4 lines
126 B
Plaintext
4 lines
126 B
Plaintext
|
#!/bin/sh
|
||
|
file="$(f="$(which $1 2>/dev/null)" && test -f "$f" && echo $f || echo "$HOME/.local/bin/scripts/$1")"
|
||
|
edit "$file"
|