Mar 19, 2009 #1 Matsul IS-IT--Management May 6, 2002 140 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 Nov 8, 2002 53,708 FR Code: FF='mm*' echo call "$FF" Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote