Miscellaneous
Count the Lines of all Files under A Directory
# Count the lines of all .txt files under the current directory.
find . -name '*.txt' | xargs wc -lLast updated
# Count the lines of all .txt files under the current directory.
find . -name '*.txt' | xargs wc -lLast updated