In file a.lst:
in1.a in1.b > out1.a 2> out1.b
in2.a in2.b > out2.a 2> out2.b
In do.sh:
CLI=$(sed -n -e "1 p" a.lst)
perl a.pl $CLI
I want to run like perl a.pl in1.a in1.b > out1.a 2> out1.b, how can I make it work ?
|
|
In file a.lst:
In do.sh:
I want to run like
|
|||
|
|
I can't test it here, but it looks like using
|
||
|
|
|
to evaluate the redirect part just add eval as posted by someone earlier |
||||||||||
|
|
|
If your input file is in a consistent format (always the same number of parameters and the same kind of redirection), you might be able to do this:
If you actually want to do this for each line in a.list:
If you want just the first 10 lines of your input file, the last line can be changed to:
|
|||
|
|
head -n 1instead ofsedif you just want the first line? – Dennis Williamson Oct 20 at 8:19