RE: Print full username and groupname for ls command

2024-02-25 Thread David Laight
From: Denys Vlasenko > Sent: 25 February 2024 00:06 > > I think we can simply stop the truncation, like this: > > - column += printf("%-8.8s %-8.8s ", > + column += printf("%-8s %-8s ", > > without additional loop to measure max

Re: Print full username and groupname for ls command

2024-02-24 Thread Denys Vlasenko
I think we can simply stop the truncation, like this: - column += printf("%-8.8s %-8.8s ", + column += printf("%-8s %-8s ", without additional loop to measure max length. On Mon, Feb 19, 2024 at 3:09 PM Matthew Chae wrote: > > Hi

Print full username and groupname for ls command

2024-02-19 Thread Matthew Chae
2024 14:53:27 +0100 Subject: [PATCH] Print full username and groupname for ls command As we currently have quite a lot of long usernames and groupnames. It would be nice to be able to print full username/groupname when using ls. This affects options -l and -g of ls command. Reviewed-by: Christopher