Informatique Word recursive replacement par eddy barraud|Publié 3 août 2018 Search for a word inside every files in current folder and replace it with sed One line find . -type f -print0 -exec sed -i 's/hello/hi/g' {} + (we can add -name "*.txt" option to restrict the recursion and speed up the work) Just for searching grep -R {something_to_look_for} {where_to_look_in} Using locate to search for file NAME (before run updatedb) locate {word} view raw word-replace-recursive.md hosted with ❤ by GitHub
Search for a word inside every files in current folder and replace it with sed One line find . -type f -print0 -exec sed -i 's/hello/hi/g' {} + (we can add -name "*.txt" option to restrict the recursion and speed up the work) Just for searching grep -R {something_to_look_for} {where_to_look_in} Using locate to search for file NAME (before run updatedb) locate {word}
Publié 19 avril 2015 Bug internet ? Si votre connexion internet lague, bug, ou ne fonctionne plus : Essayez ceci ! Ce batch vous permet de relancer votre connexion […]
Publié 17 février 2017 FixWin pour Windows 10 Cette application portable permet de réparer les problèmes Windows 10 les plus courants (comme l’explorateur de fichier, la connexion internet, etc…). Elle provient […]
Publié 17 novembre 2018 Fail2ban Fail2ban est un programme de prévention d’intrusion réseau écrit un python. Il est très utilisé sur Linux, et vraiment efficace. Voici un […]