Commonly Used Linux Commands Reference
Some commonly used Linux commands. View the number of files in a directory ls -l | wc -l View the number of files in a directory and its subdirectories find . -type f | wc -l View the number of lines in a file wc -l file.txt Find file content and display a few lines … Read more