diff --git a/.config/shell/functions/llw b/.config/shell/functions/llw new file mode 100644 index 0000000..5201ded --- /dev/null +++ b/.config/shell/functions/llw @@ -0,0 +1,12 @@ +#!/bin/sh +# llw - "ls -l which" +# used to find information on one or more binaries in the PATH +# usage: +# llw bash firefox BespokeSynth + +llw() { + until [ $# = 0 ]; do + ls -l "$(which "$1")" + shift + done +}