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.
The moose likes Linux / UNIX and the fly likes Passing command line argument in shell script Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » Linux / UNIX
Reply Bookmark "Passing command line argument in shell script" Watch "Passing command line argument in shell script" New topic
Author

Passing command line argument in shell script

Himal Chuli
Ranch Hand

Joined: Aug 06, 2002
Posts: 118
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
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
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Passing command line argument in shell script
 
Similar Threads
i have finished making the scripts but..
getting and setting environment variables
problem with goto ,blocks
UNIX shell options
unix scripting