Skip to content

Instantly share code, notes, and snippets.

@legalsylvain
Last active September 16, 2015 06:51
Show Gist options
  • Save legalsylvain/36271979a7711e09d452 to your computer and use it in GitHub Desktop.
Save legalsylvain/36271979a7711e09d452 to your computer and use it in GitHub Desktop.
Linux

Gestion des fichiers

du -hs ./unfolder/

Taille d'un dossier. (avec sous dossier)

  • du : Disk Usage
  • -h : "human"
  • -s : "Summarize"

sed -i 's/ugly/beautiful/g' ./path_to_file.ext

remplace une chaine de caractère par une autre

  • sed : Stream EDitor
  • -i :

find ./ -type f -exec MA_COMMANDE {} ;

  • -type : 'f' : file;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment