Question: Hello, I understand the following bash script is meant to change file suffixes. Having never written a bash script, I do not understand the syntax
Hello,
I understand the following bash script is meant to change file suffixes. Having never written a bash script, I do not understand the syntax at all.
Can someone explain what all the syntax is in this bash script? Starting at "#! /bin/bash" and ending at "done"
Thanks!

Using bash Here is a small bash script. It changes file suffixes: #1 /bin/bash old suffix-$1 new_suffix-$2 for f in *. $old suffix do new name-${f%. *),$new suffix echo Rename $f to $new name done You might use it like this, to rename all of your C files (ending in .c) to be C++ files (ending in .cpp): ./rn c cpp
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
