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