aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-06-30 10:27:06 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-06-30 10:27:06 +1200
commit7859b833eab9ed32d2b438e1b5cc534b830118db (patch)
tree4753daba7f725867af0fce0419daa1dab6715403 /sh/shrc.d
parentDouble-quote shell config in tmux (diff)
downloaddotfiles-7859b833eab9ed32d2b438e1b5cc534b830118db.tar.gz
dotfiles-7859b833eab9ed32d2b438e1b5cc534b830118db.zip
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.
Diffstat (limited to 'sh/shrc.d')
-rw-r--r--sh/shrc.d/env.sh8
1 files changed, 0 insertions, 8 deletions
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
-}