015c02c0创建于 2021年8月2日历史提交
#!/bin/bash

cd test

[ -e test.py ] || exit

chmod u+x test.py

if [ $# -gt 0 ]; then
	./test.py "$@"
else
	./test.py
fi

chmod u-x test.py