I have dozens of bash scripts in a certain location (/subdirectory1
) with the incorrect pathname (pathname1
) within the file. I would like to somehow replace this pathname with pathname2
for all of the bash scripts *.sh
within that subdirectory.
Is there a standard way to do this?
In perl, if I was working with a single file file1
, I would execute:
perl -pi -e 's/pathname1/pathname2/g' file1
How would one accomplish this for all files, *.sh
?
It doesn't have to be in perl, but this is the one way that comes to mind. I suspect there's also a way to do this with other shell scripts and other languages---I will happily edit this question to narrow down the options.
Just use a file glob:
This will deal with pathological filenames that contain whitespace just fine.