Informatique Sum the number of lines in each file of a folder par eddy barraud|Publié 15 mars 2019 Run this command to sum the number of lines in each file of a folder find . -maxdepth 1 -type f -exec wc -l {} + | awk '{sum+=$1} END {print sum}' view raw count-number-of-lines-in-each-files.md hosted with ❤ by GitHub
Run this command to sum the number of lines in each file of a folder find . -maxdepth 1 -type f -exec wc -l {} + | awk '{sum+=$1} END {print sum}'
Publié 27 août 2018 Mount Rclone Cloud storage Mount cloud disk (OneDrive,etc…) In Linux Using Rclone (&fuse)
Publié 20 mai 2018 Aria2c download manager Apprenez comment utiliser Aria2c comme gestionnaire de téléchargement avec interface graphique et gestion multiserveur.
Publié 26 septembre 2018 PyInstaller PyInstaller is a program that freezes (packages) Python programs into stand-alone executables, under Windows, Linux, Mac OS X, FreeBSD, Solaris and AIX. […]