From f5b0b481c3b5c6a1dfd089ec99582c0d5cc0e1b9 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 25 Jan 2017 13:32:34 +1300 Subject: Add -D option for FreeBSD ls() --- sh/shrc.d/ls.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'sh') diff --git a/sh/shrc.d/ls.sh b/sh/shrc.d/ls.sh index c7703663..0fc6923a 100644 --- a/sh/shrc.d/ls.sh +++ b/sh/shrc.d/ls.sh @@ -31,10 +31,14 @@ ls() { [ -e "$HOME"/.cache/ls/time-style ] && set -- --time-style='+%Y-%m-%d %H:%M:%S' "$@" - # Add -G for colorized output if the operating system is FreeBSD - # We have to check because -G means something else to e.g. GNU ls(1) + # If the operating system is FreeBSD, there are some specific options we + # can add that might mean different things to e.g. GNU ls(1) case $OS in - FreeBSD) set -- -G "$@" ;; + FreeBSD) + # -D: Timestamp format + # -G: Use color + set -- -D '%Y-%m-%d %H:%M:%S' -G "$@" + ;; esac # Run ls(1) with the concluded arguments -- cgit v1.2.3