This is a very useful bit of code, used to search within files on a Linux server. Replace the . after find to search within […]
Continue readingTag: Shell
Recursively count the number of files on a Linux server
Simple script to recursively count the number of files on a Linux server. ls -laR | wc -l How this works: ls (lists folder contents), […]
Continue reading