adjusted time format for lll

This commit is contained in:
Jorge Stefanov 2024-05-14 11:22:25 +03:00
parent 57b1404c0e
commit 2cf378980a

View file

@ -15,7 +15,7 @@ alias less='less -R'
if [[ "$OSTYPE" != darwin* ]]; then if [[ "$OSTYPE" != darwin* ]]; then
# long format with ISO dates # long format with ISO dates
alias lll='ls --color=auto -Al "--time-style=+%Y-%m-%d %H:%M:%S %4Z"' alias lll='ls --color=auto -Al "--time-style=+%Y-%m-%d %H:%M:%S GMT%z"'
# color ip route # color ip route
if ip -V | grep '^ip utility, iproute2-.*, libbpf' &>/dev/null; then if ip -V | grep '^ip utility, iproute2-.*, libbpf' &>/dev/null; then
@ -28,5 +28,5 @@ if [[ "$OSTYPE" != darwin* ]]; then
else else
# MacOS aliases # MacOS aliases
alias ll='ls --color=auto -l' alias ll='ls --color=auto -l'
alias lll='ls --color=auto -Al -D "%Y-%m-%d %H:%M:%S %Z"' alias lll='ls --color=auto -Al -D "%Y-%m-%d %H:%M:%S GMT%z"'
fi fi