Files
tmuxifier/libexec/tmuxifier-commands
2012-04-22 11:28:38 +01:00

14 lines
263 B
Bash
Executable File

#! /usr/bin/env bash
set -e
[ -n "$TMUXIFIER_DEBUG" ] && set -x
shopt -s nullglob
{ for path in ${PATH//:/$'\n'}; do
for command in "${path}/tmuxifier-"*; do
command="${command##*tmuxifier-}"
echo ${command##sh-}
done
done
} | sort | uniq