Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 99 Bytes

xargs.md

File metadata and controls

5 lines (4 loc) · 99 Bytes

Execute command for each line in file

cat <file> | xargs -I % sh -c 'echo %; touch %'