9 lines
66 B
Bash
Executable File
9 lines
66 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd ..
|
|
bin/run "$*"
|
|
RV=$?
|
|
popd || exit 1
|
|
|
|
exit $RV
|