From: Simon Ruderich Date: Wed, 3 Mar 2021 08:42:23 +0000 (+0100) Subject: shell: aliases: use unabbreviated "-brief" in `ip` alias X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=cbdb911f08be1f221a7b0173e83a82c359ace498 shell: aliases: use unabbreviated "-brief" in `ip` alias I prefer full option names in aliases. This makes the configuration easier to understand and brevity is not relevant here. --- diff --git a/shell/shell/aliases.in b/shell/shell/aliases.in index 0076a56..3d339c2 100644 --- a/shell/shell/aliases.in +++ b/shell/shell/aliases.in @@ -139,6 +139,6 @@ if test "`id -u`" -eq 0; then fi # Use short `ip` output per default. -alias ip='ip -br' +alias ip='ip -brief' # vim: ft=sh