Registrations Closing Soon for DevOps Certification Training by CloudxLab | Batch Starts on 18th April
Enroll NowA shell script is a file containing a list of commands. Let's create a simple command that prints two words:
Open a text editor to create a file myfirstscript.sh
:
nano myfirstscript.sh
Write the following into the editor:
#!/bin/bash
name=linux
echo "hello $name world"
Note: In Unix, the extension doesn't dictate the program to be used while executing a script. It is the first line of the script that would dictate which program to use. In the example above, the program is /bin/bash
which is a Unix shell.
Press Ctrl+X
to save and then Y
myfirstscript.sh
. If not enter the same filename.Hit Enter
key to exit
Now, by default, it would not have executable permission. You can make it executable like this:
chmod +x myfirstscript.sh
To run the script, use:
./myfirstscript.sh
No hints are availble for this assesment
Answer is not availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...