In this link: https://superuser.com/a/180252/401901
The following command is used:
cat list.txt | xargs -I % echo cp % new_folder
What does the % % usage mean?
All google search results are about using it in a modulo operation. Or, am I searching it in a wrong way?
Also, is there a name for this kind of usage?
Thank you!