Mar 19, 2009 #1 Matsul IS-IT--Management Joined May 6, 2002 Messages 140 Location BE I need to pass a parameter having an * representing a list of files >touch mm1 >touch mm2 emacs tt.ksh FF=mm* echo call $FF >chmod u+x tt.ksh > ./tt.ksh call mm1 mm2 How can I display call mm* ? thx
I need to pass a parameter having an * representing a list of files >touch mm1 >touch mm2 emacs tt.ksh FF=mm* echo call $FF >chmod u+x tt.ksh > ./tt.ksh call mm1 mm2 How can I display call mm* ? thx
Mar 19, 2009 1 #2 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR Code: FF='mm*' echo call "$FF" Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote