6 lines
201 B
Bash
Executable file
6 lines
201 B
Bash
Executable file
#!/bin/zsh
|
|
#dep:abcde
|
|
source ${$(realpath "$0"):h:h}/lib/next-in-path.zsh
|
|
next=$(next-in-path abcde $0)
|
|
if (( $? != 0 )); then exit 1; fi
|
|
$next -c ${XDG_CONFIG_HOME:-$HOME/.config}/abcde/abcde.conf $@
|