This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi, just wondering how could i define a variable in a shell script and pass an argument to it from command line. specifically, i would like to do something like the following: Script ------------------ myScript(script name) var This a var argument passed in command line. now in command line, typing following myScript Testing should display: This is Testing argument passed in command line. hope, i have been clear what i would like to do. appreciate your help. thanks. himal
Himal
Blaine Mincey
Greenhorn
Joined: Nov 28, 2000
Posts: 15
posted
0
Just a quick example.... Command line $ HelloWorld Blaine #/bin/bash VAR_NAME=$1 echo "Hello, $VAR_NAME" Should result in $ Hello, Blaine Remember to make your shell script executable... Blaine blaine_mincey@mindspring.com