Guest User

Untitled

a guest
Jun 13th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. xargs -a file.txt -n 1 cp template.indd
  2.  
  3. xargs -n 1 < file.txt cp template.indd
  4.  
  5. for file in $(cat file.txt);do cp template.indd "${file}";done
Add Comment
Please, Sign In to add comment