Remove the need for sudo mtr on macos
This commit is contained in:
parent
8bca18e132
commit
0e716fb43a
@ -112,6 +112,9 @@ alias genuuid="python -c 'import uuid; print(uuid.uuid4())'"
|
||||
alias nvim-tmp="$EDITOR $(mktemp)"
|
||||
alias vim-tmp="$EDITOR $(mktemp)"
|
||||
|
||||
# If this is macos, alias `mtr` to `sudo mtr` (if mtr exists)
|
||||
[[ $(uname -s) == "Darwin" ]] && [[ -x "$(command -v mtr)" ]] && alias mtr="sudo mtr"
|
||||
|
||||
# Some aliases only make sense if their parent command exists
|
||||
[[ -x "$(command -v wg)" ]] && alias wg-easykeys="wg genkey | tee >(wg pubkey)"
|
||||
[[ -x "$(command -v systemd-resolve)" ]] && alias flush-dns="sudo systemd-resolve --flush-caches"
|
||||
|
Loading…
x
Reference in New Issue
Block a user