6 lines
157 B
Plaintext
6 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# removes the first arg from $@, which is always the filename
|
||
|
shift
|
||
|
# runs the <outfile> executable with whatever args are left in $@
|
||
|
./out "$@"
|