add time_short/compact alias functions

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-23 11:56:39 -05:00
parent 62b189b512
commit 6472f64f36

View file

@ -38,6 +38,8 @@ with lib;
# general unix
date_compact = "date +'%Y%m%d'";
date_short = "date +'%Y-%m-%d'";
time_compact = "date +'%Y%m%d%H%M%'";
time_short = "date +'%Y-%m-%dT%H:%M:%S'";
ls = "ls --color -Gah";
ll = "ls --color -Galhtr";
lss = "du --max-depth=0 -h {.,}* 2>/dev/null | sort -hr";