10 lines
77 B
Plaintext
10 lines
77 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# Args: DIR command
|
||
|
cd "$1"
|
||
|
CMD="$2"
|
||
|
shift
|
||
|
shift
|
||
|
|
||
|
exec $CMD "$@"
|