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!

Hello, I understand the following bash script is meant to change file

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!