I downloaded a .sh script file that will change the name of files from upper to lower case. I am still new to Redhat 7.2, how do I run the script?
Printable View
I downloaded a .sh script file that will change the name of files from upper to lower case. I am still new to Redhat 7.2, how do I run the script?
just do:
sh name-of-script.sh
or if the script has executable permissions,
do:
./name-of-script.sh
from the directory where the script resides.