Prev: How should I store one bash script inside of another?
Next: Error with using Imagemagick convert from a shell script
From: Barry Margolin on 2 May 2007 20:42 In article <1178144095.984410.311300(a)y80g2000hsf.googlegroups.com>, cpurvis3(a)csc.com wrote: > close ... I need to run with the following (insert the shell cmd after > the "-e"): > > > dtterm -e ksh "ls -la;ksh" > > or ... > > > dtterm -e ksh "ls -la;read" ksh's argument is the name of a script file to run. If you want to give it a command line to execute, you have to use the -c option: dtterm -e ksh -c "ls -la; read" -- Barry Margolin, barmar(a)alum.mit.edu Arlington, MA *** PLEASE post questions in newsgroups, not directly to me *** *** PLEASE don't copy me on replies, I'll read them in the group *** |