4 Feb
2015
4 Feb
'15
23:04
On Wed, 4 Feb 2015 23:52, Stevens <fred-n-sandy@...> wrote:
How does one list files in a directory by owner? I don't see an option for ls that does that. Maybe something else as simple? I don't remember ever seeing that done...
I do not know of a ls option that would allow that. I'm using a function, combining ls and sort to do that. [code for bash] function lsu () { ls --color -l ${1+$"$@"} |LANG=C sort -k3; } [/code] Attn.: does not work with "-g" option - Yamaban. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org