mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 01:46:40 +00:00
Initial commit
This commit is contained in:
13
libexec/tmuxifier-commands
Executable file
13
libexec/tmuxifier-commands
Executable file
@@ -0,0 +1,13 @@
|
||||
#! /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
|
||||
Reference in New Issue
Block a user