Basic Shell Scripting-step by step If you are not a beginner go to summery page What is a script? Group of commands in one file for a specific or a number of actions to achieve a result 1. Select your editor You must have a text editor to write shell programs Select an editor in which you are comfortable Most common editors are Vi and Emacs 2. Structure of a script a)First line “#!/path/to/shell” b) Comments Purpose of script, author, created date, modifications, bug fix notes etc c) Body of script Commands to be executed This line will decide which shell to be used for executing the commands in script If the line is not present, system will use default shell E.g.:- 1 ------------------------------------ #!/bin/bash echo “Hello world” E.g. Explained ------------------------------------ The above script will execute echo “Hello world” in bash shell 3. Execute a scrip...