To make sure that you do not destroy your real files, I use the folder /tmp resided the home directory to carried out this tutorial. You can create a new one if you like.
cd
mkdir /tmp
cd tmp
Now, I'm standing in the folder /tmp. Currently, this is a empty working directory. I make 100 new files in the extension .dot as the following:
for x in {1..100}; do touch "file$x.dot"; done
And 200 new files as Gif images
for x in {1..200}; do touch "myimage$x.gif"; done
Now, how can I rename all files .dot to .bak in the folder /tmp? The following command can solve this problem.
for x in *.dot; do mv "$x" "${x%.dot}.bak"; done
credits : NFT team
0 Comments