22 lines
516 B
Bash
Executable file
22 lines
516 B
Bash
Executable file
#!/bin/sh
|
|
|
|
find_all_executables() {
|
|
{
|
|
IFS=:; for d in $PATH; do for f in $d/*; do [ -f $f ] && [ -x $f ] && echo ${f##*/}; done; done;
|
|
} | sort | uniq
|
|
}
|
|
|
|
if [[ -z "$@" ]]; then
|
|
echo "^run [a-zA-Z0-9_-]*$"
|
|
elif [[ "$1" == "--hint" ]]; then
|
|
find_all_executables | awk '{print $1 " run " $1}'
|
|
elif [[ "$1" == "--complete" ]]; then
|
|
shift
|
|
find_all_executables | awk '{print $1 " run " $1}'
|
|
elif [[ "$1" == "--preview" ]]; then
|
|
shift
|
|
echo "Will run $1"
|
|
elif [[ "$1" == "--run" ]]; then
|
|
shift
|
|
setsid -f "$2"
|
|
fi
|