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é 26 septembre 2018 Lagrange interpolating polynomials Here is the Lagrange interpolating polynomial equation: You can find a python code hosted in GitHub here: https://github.com/Eddy-Barraud/Lagrange-interpolating-polynomials It […]
Publié 20 mai 2018 Aria2c download manager Apprenez comment utiliser Aria2c comme gestionnaire de téléchargement avec interface graphique et gestion multiserveur.
Publié 13 avril 2020 Synchronize your Microsoft password / Network incorrect password If one day you are unable to access your computer over network, saying you that your password is incorrect, here is the […]