Linux comment exécuter un 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>
ofroog