freebsd is 14 something too
tho
joined 5 years ago
i will never grow tired repeating this: systemd is the best thing that happened to linux in the 10s
No, it's just a wireguard config
what if i use DoH?
same for gh (github cli)
gh() {
if [[ "$1" = repo && "$2" = clone ]]; then
shift
shift
set -- repo clone "$@" -- --recursive
fi
command gh "$@"
}
the only thing this does is add "--recursive" to every git clone
invocation
git() {
if [ "$1" = clone ]; then
shift
set -- clone --recursive "$@"
fi
command git "$@"
}
in zsh you can just forbid it to save duplicates
ccd() {
mkdir "$1" && cd "$1"
}
view more: next ›
what is that editor? it looks very cool