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