- How To Write First UNIX Korn Shell Script Program
- Korn Shell Variables
- KSH IF Command Conditional Scripting Examples
Can you tell me how to write a UNIX korn shell script program? I'm new to UNIX scripting and HP-UX UNIX operating system.
Korn shell scripting under UNIX / Linux can be used to automate lots of stuff. It easy to write a shell script. You must know how to use a text editor such as vi to write a script.
Writing your first Korn shell script
Let us write a shell program to print knowledge is power on screen. Type the following command to open file:
vi hello.ksh
The first line should be as follows:
#!/bin/ksh
It is called a shebang. It consists of a number sign and an exclamation point character (#!), followed by the full path to the interpreter such as /bin/ksh. All scripts under UNIX execute using the interpreter specified on a first line.
Next append code as follows:
# A shell script to print message # Written by Tom - Jan/13/2008 print "Knowledge is power"
Save and close the file. At the end your script should look like as follows:
#!/bin/ksh # A shell script to print message # Written by Tom - Jan/13/2008 # ------------------------------ print "Knowledge is power"
Set executable permission
Type the following command to set executable permission:
chmod +x hello.ksh
Run your korn shell script
Type the following command:
./hello.ksh
Sample output:
Knowledge is power
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- My 10 UNIX Command Line Mistakes
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email FAQ to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: 07/2/09



{ 3 comments… read them below or add one }
great job on youe xplainations. I enjoy your site
Its a good intro and i had successfully wrote my first script, but its better to have a vi or any other editor tutorial mix with this, i first learn the vi and then this one, and it works.
Anyways a goood one. Thanks once again.
hi,
please give me some programs which r follows.
1)write a shell script program take two strings & check that the string are same or not
2) sript program to take marks of five subject of a students with name & display the grade in which he is passed .
3) enter a character from a user & check that itbis a lower case letter, upper case letter, digit, special char.
4)write a program to find the string is start with ovel, digita, or ends with digit, ovel & the word contains of five letters.
5)create a file student.dat which contain details of student as rool no.,name,want to be, on plattform, birthdate.