Skip to content

Commit 57b4baa

Browse files
committed
Add latest changes
1 parent 90b6ac5 commit 57b4baa

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

not_executable.sh

Whitespace-only changes.

toolkit.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
EXCLUDE="$(basename $0)"
4+
DIR="$(dirname $0)"
5+
6+
PS3="Which utility do you want to run?: "
7+
select SCRIPT in $(ls -I $EXCLUDE $DIR); do
8+
if [ -x "${DIR}/$SCRIPT" ]; then
9+
"${DIR}/$SCRIPT"
10+
break
11+
else
12+
echo "$SCRIPT is not executable yet."
13+
fi
14+
done

0 commit comments

Comments
 (0)