aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/ls.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-06-23 12:59:19 -0500
committerRob Landley <rob@landley.net>2015-06-23 12:59:19 -0500
commit28727ba7cddb932bfa88eef514e60fe8d337087a (patch)
tree8f461fec1eacd494b8cad12556e93a4452feb0b5 /toys/posix/ls.c
parent3d5ee802321e1b1b3b5d149aae2b8765a06efb21 (diff)
downloadtoybox-28727ba7cddb932bfa88eef514e60fe8d337087a.tar.gz
Fix ls so spacing is right for ls -l, -o, -g, -og, -ogZ, -lZ, -gZ, and -oZ.
Diffstat (limited to 'toys/posix/ls.c')
-rw-r--r--toys/posix/ls.c31
1 files changed, 15 insertions, 16 deletions
diff --git a/toys/posix/ls.c b/toys/posix/ls.c
index 15796ff1..5dc392c9 100644
--- a/toys/posix/ls.c
+++ b/toys/posix/ls.c
@@ -415,35 +415,34 @@ static void listfiles(int dirfd, struct dirtree *indir)
if (flags & (FLAG_l|FLAG_o|FLAG_n|FLAG_g)) {
struct tm *tm;
- char perm[11], thyme[64], *usr, *upad, *grp, *grpad;
+ char perm[11], thyme[64], *ss;
+ // (long) is to coerce the st types into something we know we can print.
mode_to_string(mode, perm);
+ printf("%s% *ld", perm, totals[2]+1, (long)st->st_nlink);
- if (flags&FLAG_o) grp = grpad = toybuf+256;
- else {
- if (flags&FLAG_n) sprintf(grp = thyme, "%u", (unsigned)st->st_gid);
- else strwidth(grp = getgroupname(st->st_gid));
- grpad = toybuf+256-(totals[4]-len[4]);
+ // print group
+ if (!(flags&FLAG_o)) {
+ if (flags&FLAG_n) sprintf(ss = thyme, "%u", (unsigned)st->st_gid);
+ else strwidth(ss = getgroupname(st->st_gid));
+ printf(" %*s", (int)totals[4], ss);
}
- if (flags&FLAG_g) usr = upad = toybuf+256;
- else {
- upad = toybuf+255-(totals[3]-len[3]);
- if (flags&FLAG_n) sprintf(usr = TT.uid_buf, "%u", (unsigned)st->st_uid);
- else strwidth(usr = getusername(st->st_uid));
+ if (!(flags&FLAG_g)) {
+ if (flags&FLAG_n) sprintf(ss = thyme, "%u", (unsigned)st->st_uid);
+ else strwidth(ss = getusername(st->st_uid));
+ printf(" %*s", (int)totals[3], ss);
}
- // Coerce the st types into something we know we can print.
- printf("%s% *ld %s%s%s%s", perm, totals[2]+1, (long)st->st_nlink,
- usr, upad, grp, grpad);
-
if (flags & FLAG_Z)
- printf(" %*s ", -(int)totals[7], (char *)sort[next]->extra);
+ printf(" %*s", -(int)totals[7], (char *)sort[next]->extra);
+ // print major/minor
if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode))
printf("% *d,% 4d", totals[5]-4, major(st->st_rdev),minor(st->st_rdev));
else printf("% *lld", totals[5]+1, (long long)st->st_size);
+ // print time, always in --time-style=long-iso
tm = localtime(&(st->st_mtime));
strftime(thyme, sizeof(thyme), "%F %H:%M", tm);
xprintf(" %s ", thyme);