mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2024-11-25 09:39:26 +01:00
7 lines
86 B
Plaintext
7 lines
86 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
TARGET="bin"
|
||
|
for e in $@; do
|
||
|
TARGET="$TARGET/$e"
|
||
|
done
|
||
|
exec ${TARGET}.sh
|