xargs

# Print last 5 lines of all files in
# current directory ended in .txt

find *.txt | xargs tail -n 5
RicarHincapie