diff options
author | June McEnroe <june@causal.agency> | 2018-11-19 02:02:20 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-19 02:02:20 -0500 |
commit | 32fcb13a3c93c170803e64857a72b38f34689d46 (patch) | |
tree | 2606bd3124035acb513ccffd4f7d9581282c0de1 | |
parent | Add missing include in dtch (diff) | |
download | src-32fcb13a3c93c170803e64857a72b38f34689d46.tar.gz src-32fcb13a3c93c170803e64857a72b38f34689d46.zip |
Alias ls='ls -p'
NetBSD ls(1) doesn't have colour, and I really like to know which are files and which are directories.
-rw-r--r-- | home/.kshrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/home/.kshrc b/home/.kshrc index 16e79147..fb605acd 100644 --- a/home/.kshrc +++ b/home/.kshrc @@ -28,6 +28,7 @@ export NETHACKOPTIONS=' color, DECgraphics ' +alias ls='ls -p' alias ll='ls -lh' if [[ $(uname) = 'Linux' ]]; then alias ls='ls --color=auto' grep='grep --color' rm='rm -I' |