Linux Articles

How To Create Simple Shell Script

How To Create Simple Shell Script

Shell script is the simple and short program written in Shell Programming language and execute on shell process.It will help to process the automatic tasks in linux based machines.
How TO Create Simple Shell Script
Shell script is complete command line interface text script.

Here is First script that will be initial step toward shell script.

Initial Script:

Following script will clear the monitor screen and display simple text message Good morning, my world.

Before start this need to open text editor like vi editor.

#!/bin/bash
clear
echo “Good morning,my world.”

Tags:Shell script,Shell programming,Shell code,Shell code execute,Shell script,Shell nodes,Linux scripting

About the author

admin

Add Comment

Click here to post a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.