10 lines
110 B
Bash
Executable file
10 lines
110 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ -f ./.run ]]; then
|
|
./.run $@
|
|
exit $?
|
|
else
|
|
echo "run: ./.run does not exist"
|
|
exit 1
|
|
fi
|
|
|