diff options
author | makefu <github@syntax-fehler.de> | 2012-12-20 10:45:52 +0700 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2012-12-20 10:45:52 +0700 |
commit | 384552a83d12b1f14e2d35f2267aabbf9240eac6 (patch) | |
tree | 86cafa2af20104361b19ba51ef578a6de4938afe /sandbox/cobra/index.sh | |
parent | 927fec296c45f72a95014118a9d7989f19504a13 (diff) |
//cobra -> //sandbox/cobra
Diffstat (limited to 'sandbox/cobra/index.sh')
-rwxr-xr-x | sandbox/cobra/index.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sandbox/cobra/index.sh b/sandbox/cobra/index.sh new file mode 100755 index 00000000..1118a823 --- /dev/null +++ b/sandbox/cobra/index.sh @@ -0,0 +1,16 @@ +#! /bin/sh +set -euf +trap "echo 'You are made of stupid!' >&2; exit 23" EXIT + +COBRA_PATH="${COBRA_PATH-$PWD}" + +## main +for target; do + for path in $COBRA_PATH; do + if test -d "$path/$target"; then + if index="$path/$target/index.sh" && test -f "$index"; then + exec /bin/sh "$index" + fi + fi + done +done |