Trucs et astuces, comment faire avec Linux (surtout Ubuntu)
remplace une chaine dans un fichier
BASH:
find . -type f -exec sed -i 's/foo/bar/g' {} +
zsh
sed -i -- 's/foo/bar/g' **/*(D.)
https://unix.stackexchange.com/questions/112023/how-can-i-replace-a-stri...
Lance une commande (echo {}) pour tout les fichiers ayant l'extension *.pdf
find . -type f -name *.pdf -exec echo {} +
Installer ruby compass sous Ubuntu 20.04 LTS
sudo apt-get install make ruby ruby-dev;
sudo gem install compass;