1
0
mirror of https://github.com/NekoX-Dev/NekoX.git synced 2025-01-19 00:31:25 +01:00
NekoX/run

10 lines
141 B
Plaintext
Raw Normal View History

2021-01-17 00:25:30 +08:00
#!/bin/bash
TARGET="bin"
for e in $@; do
TARGET="$TARGET/$e"
2021-01-17 19:39:32 +08:00
shift
if [ -x "${TARGET}.sh" ]; then
exec "${TARGET}.sh" $@
fi
done