On 14 June 2010 22:48, Aharon Schkolnik <[email protected]> wrote: > On Monday, June 14, 2010, Noam Meltzer wrote: >> use $@ instead of $* > > Does that work for you ? > > I still get the same results - the script treates file\ one as two > parameters - file and one.
1. Try switching to #!/bin/bash - I think the "$@" is a bash-specific extension which might be disabled if bash is called as "sh". 2. Add double-quotes around the "$@", (ie. make it read 'nice ffmpege "$@"' without the single-quotes) BTW - if the "nice ffmpeg" is the last line in the script then you can add an "exec" in front of it. --Amos _______________________________________________ Linux-il mailing list [email protected] http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
