I have a list with 1850 completely different names, like happy_birthday.js
. Now I want to duplicate that file 1850 times, but each file must have a different name, coming from a list. This list is in the file song_titles.txt
.
I know how to create folders from a list, like this:
xargs -tI % mkdir % < song_titles.txt
but I don't know if it is possible to combine renaming with duplicating.