Into to shell programmin in unix

Newbie Member
18Nov2010,14:40   #1
PALLAVI BARDAPURKAR's Avatar
My problem is that how to save the shell script in vi editor and then how to run it in ksh
Go4Expert Member
19Nov2010,20:12   #2
sreek's Avatar
after typing the script in vi editor use
:wq for saving the file (in command mode)
then make the file executable

chmod +x filename

execute using ksh

ksh filename
Happy scripting