Random Linux commands that I have used
find libblkmaker | wc -l This counts the number of files and folders in a directory. wc stands for word count. -l prints the number of lines. | pipes the results to the wc command. find libblkmaker -type f | wc -l If you want to count just the files, add the criteria -type f.… Read More »