When I type ls, i get the normal list, or when I type ls -la I get a details version with everything...
But I hate the layout of ls, it's just unintuitive for most of my use.
Is there some way I can modify (without changing the sorcecode of ls, bash scripts are okay however) ls so it's display instead of
-rwxr-xr-x 13 user group 123546 2011-01-01 11:11 filename0
-rwxr-xr-x 13 user group 123546 2011-01-01 11:11 filename1
-rwxr-xr-x 13 user group 123546 2011-01-01 11:11 filename2
drwx------ 13 user group 123546 2011-01-01 11:11 directory0
-rwxr-xr-x 13 user group 123546 2011-01-01 11:11 filename3
drwx------ 13 user group 123546 2011-01-01 11:11 directory1
I can get a list more like:
DIRS
directory0 1293880260 700 user:group
directory1 1293880260 700 user:group
FILES
filename0 1293880260 751 user:group
filename1 1293880260 755 user:group
filename2 1293880260 777 user:group
filename3 1293880260 705 user:group
Or some other variation.
Meanwhile, preserving ability to use flags and other options.