Skip to content

Instantly share code, notes, and snippets.

@aemonair
Created January 10, 2020 02:58
Show Gist options
  • Save aemonair/8807e3c6ea47cda6ad731de41aa2b2c6 to your computer and use it in GitHub Desktop.
Save aemonair/8807e3c6ea47cda6ad731de41aa2b2c6 to your computer and use it in GitHub Desktop.
copy file to many files
i=0
F=new
while [ $i -le 30 ]
do
cp -vf old.csv $F$i.csv
let i+=1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment