Mar 31, 2004 #1 Larshg Programmer Mar 1, 2001 187 DK Hi I would like to be able to but all the parameters given to a script into one variable ex. script.ksh test1 test test3 #!/bin/ksh t=$<all of the variables> echo $t Is there any way to do this? /Larshg
Hi I would like to be able to but all the parameters given to a script into one variable ex. script.ksh test1 test test3 #!/bin/ksh t=$<all of the variables> echo $t Is there any way to do this? /Larshg
Mar 31, 2004 #3 PHV MIS Nov 8, 2002 53,708 FR t="$*" t="$@" Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 Upvote 0 Downvote
t="$*" t="$@" Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884