Answers for "linux how to execute a script"

0

linux how to execute a script

//Use the ls command to view permission on the script:
$ ls -l script-name-here

// To execute the script, type:
$ ./script-name-here

//Make the script executable with command 
$ chmod +x <fileName>
Posted by: Guest on January-27-2022

Code answers related to "linux how to execute a script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language