diff options
Diffstat (limited to 'lsn')
-rwxr-xr-x | lsn | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,12 +2,12 @@ # New and better ls # TODO: fix simlinks, flags break them for some reason -ls_new () { - LC_ALL=C $( which ls ) -lAFh --color=always "$1" | awk '{ +ls_new() { + LC_ALL=C $(which ls) -lAFh --color=always "$1" | awk '{ name = $9; for (i = 10; i <= NF; i++) name = name " " $i; print $1, $5, name - }' | column -t -l 3 -s ' '| tail -n +2 + }' | column -t -l 3 -s ' ' | tail -n +2 } dir="$1" |