Mar 31, 2004 #1 Larshg Programmer Joined Mar 1, 2001 Messages 187 Location 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 Joined Nov 8, 2002 Messages 53,708 Location 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