10 lines
104 B
Plaintext
10 lines
104 B
Plaintext
|
|
#!/bin/csh -f
|
||
|
|
|
||
|
|
set cmd=($1)
|
||
|
|
shift argv
|
||
|
|
|
||
|
|
foreach i ($argv)
|
||
|
|
echo cat $i \| $cmd
|
||
|
|
cat $i | $cmd
|
||
|
|
end
|