Tags: cd

Sort by: Date / Title /

  1. 1 month ago by spirit
    1. # :h Remove a trailing file name component, leaving only the head.
    2. # :t Remove all leading file name components, leaving the tail.
    3. # :r Remove a trailing suffix of the form .xxx, leaving the basename.
    4. # :e Remove all but the trailing suffix.
    5.  
    6. ls /usr/local/share/doc/3dm/3DM_help.htm
    7. cd !$:h           # Enleve le nom de fichier, récupère uniquement le répertoire du dernier argument de la commande précédente
    8. cat !-2$:t       # Ne garde que le nom de fichier du dernier argument de l'avant dernière commande (2eme de la fin)
  2. 1 year ago by grummfy and saved by 1 other
    The cd or dvd reader was mounted on /dev/cdrom
    
        sudo hdparm -d1 /dev/cdrom
        sudo cp /etc/hdparm.conf /etc/hdparm.conf_backup
        sudo gedit /etc/hdparm.conf
    
    Add in this file, the following lines :
    /dev/cdrom {
        dma=on
    }
  3. 1 year ago by teke
    1. # Coller la ligne ci-dessous dans une console
    2. # (path pour l'Auge)
    3.  
    4. cd ~/Desktop/iso/ && md5sum --check ./MD5SUM
  4. sponsorised links
  5. 1 year ago by spirit and saved by 1 other
    1. # On est dans /tmp
    2. cd /etc/sysconfig/network-scripts
    3. # on est dans /etc/sysconfig/network-scripts
    4. cd -
    5. # On revient dans /tmp

First / Previous / Next / Last / Page 1 of 1 (4 posteets)