Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

xargs

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

find *.txt | xargs tail -n 5
 
PREVIOUS NEXT
Tagged: #xargs
ADD COMMENT
Topic
Name
2+9 =