From 7859b833eab9ed32d2b438e1b5cc534b830118db Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 30 Jun 2017 10:27:06 +1200 Subject: Remove env(1) sorting Not worth the potential confusion. If I want nice sorted information I can either pipe it through sort myself, or use `declare -px` in Bash. --- sh/shrc.d/env.sh | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 sh/shrc.d/env.sh (limited to 'sh') diff --git a/sh/shrc.d/env.sh b/sh/shrc.d/env.sh deleted file mode 100644 index 4fa980f2..00000000 --- a/sh/shrc.d/env.sh +++ /dev/null @@ -1,8 +0,0 @@ -# Sort the output of env(1) for me -env() { - if [ "$#" -eq 0 ] ; then - command env | sort - else - command env "$@" - fi -} -- cgit v1.2.3