Comment exécuter un script shell ?
How do you execute a shell script? Steps to execute a shell script in Linux Create a new file called demo.sh using a text editor such as nano or vi in Linux: nano demo.sh. Add the following code: #!/bin/bash. Set the script executable permission by running chmod command in Linux: chmod +x demo.sh. Execute a … Lire la suite