13 lines
221 B
Text
13 lines
221 B
Text
|
#!/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
|
||
|
}
|