all repos — scriptura @ 49ba6569a0c9a8018b0c27005b3ecb99883af8e1

a corner in $HOME for your scripts

functions/__scriptura_which.fish (view raw)

1
2
3
4
5
6
7
function __scriptura_which --description 'Display script path' --argument-names script_path
    if path is --type file --perm exec $script_path
        echo $script_path
    else
        return 1
    end
end