Xargs
# Print last 5 lines of all files in
# current directory ended in .txt
find *.txt | xargs tail -n 5
RicarHincapie
# Print last 5 lines of all files in
# current directory ended in .txt
find *.txt | xargs tail -n 5