blob: e56e3bcfb038023015dd7c64e8d3c0b84c9433f8 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen9d3aba71999-10-06 09:04:55 +00002/*
Eric Andersencc8ed391999-10-05 16:24:54 +00003 * tiny-ls.c version 0.1.0: A minimalist 'ls'
4 * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21/*
22 * To achieve a small memory footprint, this version of 'ls' doesn't do any
23 * file sorting, and only has the most essential command line switches
24 * (i.e. the ones I couldn't live without :-) All features which involve
25 * linking in substantial chunks of libc can be disabled.
26 *
27 * Although I don't really want to add new features to this program to
28 * keep it small, I *am* interested to receive bug fixes and ways to make
29 * it more portable.
30 *
31 * KNOWN BUGS:
Erik Andersen9ffdaa62000-02-11 21:55:04 +000032 * 1. ls -l of a directory doesn't give "total <blocks>" header
33 * 2. ls of a symlink to a directory doesn't list directory contents
34 * 3. hidden files can make column width too large
35 *
Eric Andersencc8ed391999-10-05 16:24:54 +000036 * NON-OPTIMAL BEHAVIOUR:
37 * 1. autowidth reads directories twice
38 * 2. if you do a short directory listing without filetype characters
39 * appended, there's no need to stat each one
40 * PORTABILITY:
41 * 1. requires lstat (BSD) - how do you do it without?
42 */
43
Erik Andersene49d5ec2000-02-08 19:58:47 +000044#define TERMINAL_WIDTH 80 /* use 79 if your terminal has linefold bug */
45#define COLUMN_WIDTH 14 /* default if AUTOWIDTH not defined */
46#define COLUMN_GAP 2 /* includes the file type char, if present */
Eric Andersen3c163821999-10-14 22:16:57 +000047#define HAS_REWINDDIR
Eric Andersencc8ed391999-10-05 16:24:54 +000048
49/************************************************************************/
50
Eric Andersene77ae3a1999-10-19 20:03:34 +000051#include "internal.h"
Erik Andersene49d5ec2000-02-08 19:58:47 +000052# include <sys/types.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000053#include <sys/stat.h>
54#include <stdio.h>
55#include <unistd.h>
56#include <dirent.h>
57#include <errno.h>
58#include <stdio.h>
Eric Andersene1850dd1999-11-19 05:42:32 +000059#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +000060#include <time.h>
61#endif
62
63#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
64#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
Eric Andersene1850dd1999-11-19 05:42:32 +000065#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +000066#define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
67#endif
68
Eric Andersencc8ed391999-10-05 16:24:54 +000069#define FMT_AUTO 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000070#define FMT_LONG 1 /* one record per line, extended info */
71#define FMT_SINGLE 2 /* one record per line */
72#define FMT_ROWS 3 /* print across rows */
73#define FMT_COLUMNS 3 /* fill columns (same, since we don't sort) */
Eric Andersencc8ed391999-10-05 16:24:54 +000074
75#define TIME_MOD 0
76#define TIME_CHANGE 1
77#define TIME_ACCESS 2
78
Erik Andersene49d5ec2000-02-08 19:58:47 +000079#define DISP_FTYPE 1 /* show character for file type */
80#define DISP_EXEC 2 /* show '*' if regular executable file */
81#define DISP_HIDDEN 4 /* show files starting . (except . and ..) */
82#define DISP_DOT 8 /* show . and .. */
83#define DISP_NUMERIC 16 /* numeric uid and gid */
84#define DISP_FULLTIME 32 /* show extended time display */
Eric Andersena42982e2000-06-07 17:28:53 +000085#define DIR_NOLIST 64 /* show directory as itself, not contents */
Erik Andersene49d5ec2000-02-08 19:58:47 +000086#define DISP_DIRNAME 128 /* show directory name (for internal use) */
Eric Andersena42982e2000-06-07 17:28:53 +000087#define DISP_RECURSIVE 256 /* Do a recursive listing */
Eric Andersencc8ed391999-10-05 16:24:54 +000088
Erik Andersen1ad302a2000-03-24 00:54:46 +000089#ifndef MAJOR
90#define MAJOR(dev) (((dev)>>8)&0xff)
91#define MINOR(dev) ((dev)&0xff)
92#endif
93
Erik Andersene49d5ec2000-02-08 19:58:47 +000094static unsigned char display_fmt = FMT_AUTO;
95static unsigned short opts = 0;
96static unsigned short column = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +000097
Eric Andersene1850dd1999-11-19 05:42:32 +000098#ifdef BB_FEATURE_AUTOWIDTH
Erik Andersen9ffdaa62000-02-11 21:55:04 +000099static unsigned short terminal_width = 0;
100static unsigned short column_width = 0;
101static unsigned short toplevel_column_width = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000102#else
103#define terminal_width TERMINAL_WIDTH
104#define column_width COLUMN_WIDTH
105#endif
106
Eric Andersene1850dd1999-11-19 05:42:32 +0000107#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000108static unsigned char time_fmt = TIME_MOD;
109#endif
110
111#define wr(data,len) fwrite(data, 1, len, stdout)
112
113static void writenum(long val, short minwidth)
114{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 char scratch[128];
Eric Andersencc8ed391999-10-05 16:24:54 +0000116
117 char *p = scratch + sizeof(scratch);
118 short len = 0;
119 short neg = (val < 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120
121 if (neg)
122 val = -val;
Eric Andersencc8ed391999-10-05 16:24:54 +0000123 do
124 *--p = (val % 10) + '0', len++, val /= 10;
125 while (val);
126 if (neg)
127 *--p = '-', len++;
128 while (len < minwidth)
129 *--p = ' ', len++;
130 wr(p, len);
131 column += len;
132}
133
134static void newline(void)
135{
136 if (column > 0) {
137 wr("\n", 1);
138 column = 0;
139 }
140}
141
142static void tab(short col)
143{
144 static const char spaces[] = " ";
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145
146#define nspaces ((sizeof spaces)-1) /* null terminator! */
147
Eric Andersencc8ed391999-10-05 16:24:54 +0000148 short n = col - column;
149
150 if (n > 0) {
151 column = col;
152 while (n > nspaces) {
153 wr(spaces, nspaces);
154 n -= nspaces;
155 }
156 /* must be 1...(sizeof spaces) left */
157 wr(spaces, n);
158 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159#undef nspaces
Eric Andersencc8ed391999-10-05 16:24:54 +0000160}
161
Eric Andersene1850dd1999-11-19 05:42:32 +0000162#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersene77ae3a1999-10-19 20:03:34 +0000163static char append_char(mode_t mode)
Eric Andersencc8ed391999-10-05 16:24:54 +0000164{
165 if (!(opts & DISP_FTYPE))
166 return '\0';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000167 if ((opts & DISP_EXEC) && S_ISREG(mode)
168 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
Eric Andersencc8ed391999-10-05 16:24:54 +0000169 return APPCHAR(mode);
170}
171#endif
172
173/**
174 **
175 ** Display a file or directory as a single item
176 ** (in either long or short format)
177 **
178 **/
179
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180static void list_single(const char *name, struct stat *info,
181 const char *fullname)
Eric Andersencc8ed391999-10-05 16:24:54 +0000182{
Erik Andersen4f3f7572000-04-28 00:18:56 +0000183 char scratch[BUFSIZ + 1];
Eric Andersencc8ed391999-10-05 16:24:54 +0000184 short len = strlen(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185
Eric Andersene1850dd1999-11-19 05:42:32 +0000186#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000187 char append = append_char(info->st_mode);
188#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189
Eric Andersencc8ed391999-10-05 16:24:54 +0000190 if (display_fmt == FMT_LONG) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 mode_t mode = info->st_mode;
192
Eric Andersencc8ed391999-10-05 16:24:54 +0000193 newline();
Eric Andersen50d63601999-11-09 01:47:36 +0000194 wr(modeString(mode), 10);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000195 column = 10;
196 writenum((long) info->st_nlink, (short) 5);
Eric Andersencc8ed391999-10-05 16:24:54 +0000197 fputs(" ", stdout);
Eric Andersene1850dd1999-11-19 05:42:32 +0000198#ifdef BB_FEATURE_LS_USERNAME
Eric Andersencc8ed391999-10-05 16:24:54 +0000199 if (!(opts & DISP_NUMERIC)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 memset(scratch, 0, sizeof(scratch));
201 my_getpwuid(scratch, info->st_uid);
Erik Andersen1266a131999-12-29 22:19:46 +0000202 if (*scratch) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 fputs(scratch, stdout);
204 if (strlen(scratch) <= 8)
205 wr(" ", 9 - strlen(scratch));
206 } else {
207 writenum((long) info->st_uid, (short) 8);
Eric Andersen394f7641999-11-23 21:38:12 +0000208 fputs(" ", stdout);
209 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000210 } else
211#endif
Eric Andersen394f7641999-11-23 21:38:12 +0000212 {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 writenum((long) info->st_uid, (short) 8);
214 fputs(" ", stdout);
Eric Andersen394f7641999-11-23 21:38:12 +0000215 }
Eric Andersene1850dd1999-11-19 05:42:32 +0000216#ifdef BB_FEATURE_LS_USERNAME
Eric Andersencc8ed391999-10-05 16:24:54 +0000217 if (!(opts & DISP_NUMERIC)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 memset(scratch, 0, sizeof(scratch));
219 my_getgrgid(scratch, info->st_gid);
Erik Andersen1266a131999-12-29 22:19:46 +0000220 if (*scratch) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221 fputs(scratch, stdout);
222 if (strlen(scratch) <= 8)
223 wr(" ", 8 - strlen(scratch));
224 } else
225 writenum((long) info->st_gid, (short) 8);
Eric Andersencc8ed391999-10-05 16:24:54 +0000226 } else
227#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 writenum((long) info->st_gid, (short) 8);
Erik Andersen1266a131999-12-29 22:19:46 +0000229 //tab(26);
Eric Andersencc8ed391999-10-05 16:24:54 +0000230 if (S_ISBLK(mode) || S_ISCHR(mode)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231 writenum((long) MAJOR(info->st_rdev), (short) 3);
Eric Andersencc8ed391999-10-05 16:24:54 +0000232 fputs(", ", stdout);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233 writenum((long) MINOR(info->st_rdev), (short) 3);
234 } else
235 writenum((long) info->st_size, (short) 8);
Eric Andersencc8ed391999-10-05 16:24:54 +0000236 fputs(" ", stdout);
Erik Andersen1266a131999-12-29 22:19:46 +0000237 //tab(32);
Eric Andersene1850dd1999-11-19 05:42:32 +0000238#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000239 {
240 time_t cal;
241 char *string;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242
243 switch (time_fmt) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000244 case TIME_CHANGE:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245 cal = info->st_ctime;
246 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000247 case TIME_ACCESS:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248 cal = info->st_atime;
249 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000250 default:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 cal = info->st_mtime;
252 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000253 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 string = ctime(&cal);
Eric Andersencc8ed391999-10-05 16:24:54 +0000255 if (opts & DISP_FULLTIME)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256 wr(string, 24);
Eric Andersencc8ed391999-10-05 16:24:54 +0000257 else {
258 time_t age = time(NULL) - cal;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259
260 wr(string + 4, 7); /* mmm_dd_ */
261 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60)
Eric Andersencc8ed391999-10-05 16:24:54 +0000262 /* hh:mm if less than 6 months old */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 wr(string + 11, 5);
Eric Andersencc8ed391999-10-05 16:24:54 +0000264 else
265 /* _yyyy otherwise */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 wr(string + 19, 5);
Eric Andersencc8ed391999-10-05 16:24:54 +0000267 }
268 wr(" ", 1);
269 }
270#else
271 fputs("--- -- ----- ", stdout);
272#endif
273 wr(name, len);
274 if (S_ISLNK(mode)) {
275 wr(" -> ", 4);
Eric Andersen07e52971999-11-07 07:38:08 +0000276 len = readlink(fullname, scratch, sizeof scratch);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277 if (len > 0)
278 fwrite(scratch, 1, len, stdout);
Eric Andersene1850dd1999-11-19 05:42:32 +0000279#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000280 /* show type of destination */
281 if (opts & DISP_FTYPE) {
Eric Andersen07e52971999-11-07 07:38:08 +0000282 if (!stat(fullname, info)) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000283 append = append_char(info->st_mode);
284 if (append)
285 fputc(append, stdout);
286 }
287 }
288#endif
289 }
Eric Andersene1850dd1999-11-19 05:42:32 +0000290#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000291 else if (append)
292 wr(&append, 1);
293#endif
294 } else {
295 static short nexttab = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296
Eric Andersencc8ed391999-10-05 16:24:54 +0000297 /* sort out column alignment */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 if (column == 0); /* nothing to do */
Eric Andersencc8ed391999-10-05 16:24:54 +0000299 else if (display_fmt == FMT_SINGLE)
300 newline();
301 else {
302 if (nexttab + column_width > terminal_width
Eric Andersene1850dd1999-11-19 05:42:32 +0000303#ifndef BB_FEATURE_AUTOWIDTH
Erik Andersene49d5ec2000-02-08 19:58:47 +0000304 || nexttab + len >= terminal_width
Eric Andersencc8ed391999-10-05 16:24:54 +0000305#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000306 )
Eric Andersencc8ed391999-10-05 16:24:54 +0000307 newline();
308 else
309 tab(nexttab);
310 }
311 /* work out where next column starts */
Eric Andersene1850dd1999-11-19 05:42:32 +0000312#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersencc8ed391999-10-05 16:24:54 +0000313 /* we know the calculated width is big enough */
314 nexttab = column + column_width + COLUMN_GAP;
315#else
316 /* might cover more than one fixed-width column */
317 nexttab = column;
318 do
319 nexttab += column_width + COLUMN_GAP;
320 while (nexttab < (column + len + COLUMN_GAP));
321#endif
322 /* now write the data */
323 wr(name, len);
324 column = column + len;
Eric Andersene1850dd1999-11-19 05:42:32 +0000325#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000326 if (append)
327 wr(&append, 1), column++;
328#endif
329 }
330}
331
332/**
333 **
334 ** List the given file or directory, expanding a directory
335 ** to show its contents if required
336 **
337 **/
338
339static int list_item(const char *name)
340{
341 struct stat info;
342 DIR *dir;
343 struct dirent *entry;
Eric Andersen5d893b62000-07-06 01:57:20 +0000344 char fullname[BUFSIZ + 1], *fnend;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345
Eric Andersencc8ed391999-10-05 16:24:54 +0000346 if (lstat(name, &info))
347 goto listerr;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000348
349 if (!S_ISDIR(info.st_mode) || (opts & DIR_NOLIST)) {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000350#ifdef BB_FEATURE_AUTOWIDTH
351 column_width = toplevel_column_width;
352#endif
Eric Andersen07e52971999-11-07 07:38:08 +0000353 list_single(name, &info, name);
Eric Andersencc8ed391999-10-05 16:24:54 +0000354 return 0;
355 }
356
357 /* Otherwise, it's a directory we want to list the contents of */
358
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 if (opts & DISP_DIRNAME) { /* identify the directory */
Eric Andersencc8ed391999-10-05 16:24:54 +0000360 if (column)
361 wr("\n\n", 2), column = 0;
362 wr(name, strlen(name));
363 wr(":\n", 2);
364 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000365
Eric Andersencc8ed391999-10-05 16:24:54 +0000366 dir = opendir(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367 if (!dir)
368 goto listerr;
Eric Andersene1850dd1999-11-19 05:42:32 +0000369#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersencc8ed391999-10-05 16:24:54 +0000370 column_width = 0;
371 while ((entry = readdir(dir)) != NULL) {
372 short w = strlen(entry->d_name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000373
Eric Andersencc8ed391999-10-05 16:24:54 +0000374 if (column_width < w)
375 column_width = w;
376 }
377#ifdef HAS_REWINDDIR
378 rewinddir(dir);
379#else
380 closedir(dir);
381 dir = opendir(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000382 if (!dir)
383 goto listerr;
Eric Andersencc8ed391999-10-05 16:24:54 +0000384#endif
385#endif
386
387 /* List the contents */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000388
389 strcpy(fullname, name); /* *** ignore '.' by itself */
390 fnend = fullname + strlen(fullname);
Eric Andersencc8ed391999-10-05 16:24:54 +0000391 if (fnend[-1] != '/')
392 *fnend++ = '/';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000393
Eric Andersencc8ed391999-10-05 16:24:54 +0000394 while ((entry = readdir(dir)) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395 const char *en = entry->d_name;
396
Eric Andersencc8ed391999-10-05 16:24:54 +0000397 if (en[0] == '.') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398 if (!en[1] || (en[1] == '.' && !en[2])) { /* . or .. */
Eric Andersencc8ed391999-10-05 16:24:54 +0000399 if (!(opts & DISP_DOT))
400 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000401 } else if (!(opts & DISP_HIDDEN))
Eric Andersencc8ed391999-10-05 16:24:54 +0000402 continue;
403 }
404 /* FIXME: avoid stat if not required */
405 strcpy(fnend, entry->d_name);
406 if (lstat(fullname, &info))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000407 goto direrr; /* (shouldn't fail) */
Eric Andersen07e52971999-11-07 07:38:08 +0000408 list_single(entry->d_name, &info, fullname);
Eric Andersencc8ed391999-10-05 16:24:54 +0000409 }
410 closedir(dir);
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000411
412 if (opts & DISP_DIRNAME) { /* separate the directory */
413 if (column) {
414 wr("\n", 1);
415 }
416 wr("\n", 1);
417 column = 0;
418 }
419
Eric Andersencc8ed391999-10-05 16:24:54 +0000420 return 0;
421
Erik Andersene49d5ec2000-02-08 19:58:47 +0000422 direrr:
423 closedir(dir);
424 listerr:
Eric Andersencc8ed391999-10-05 16:24:54 +0000425 newline();
Eric Andersen9d3aba71999-10-06 09:04:55 +0000426 perror(name);
Eric Andersencc8ed391999-10-05 16:24:54 +0000427 return 1;
428}
429
Eric Andersena42982e2000-06-07 17:28:53 +0000430#ifdef BB_FEATURE_LS_RECURSIVE
431static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
432{
433 int i;
434 fprintf(stdout, "\n%s:\n", fileName);
435 i = list_item(fileName);
436 newline();
437 return (i);
438}
439#endif
440
Erik Andersene49d5ec2000-02-08 19:58:47 +0000441extern int ls_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000442{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000443 int argi = 1, i;
444
Eric Andersencc8ed391999-10-05 16:24:54 +0000445 /* process options */
446 while (argi < argc && argv[argi][0] == '-') {
447 const char *p = &argv[argi][1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000448
449 if (!*p)
450 goto print_usage_message; /* "-" by itself not allowed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000451 if (*p == '-') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000452 if (!p[1]) { /* "--" forces end of options */
Eric Andersencc8ed391999-10-05 16:24:54 +0000453 argi++;
454 break;
455 }
456 /* it's a long option name - we don't support them */
457 goto print_usage_message;
458 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459
Eric Andersencc8ed391999-10-05 16:24:54 +0000460 while (*p)
461 switch (*p++) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000462 case 'l':
463 display_fmt = FMT_LONG;
464 break;
465 case '1':
466 display_fmt = FMT_SINGLE;
467 break;
468 case 'x':
469 display_fmt = FMT_ROWS;
470 break;
471 case 'C':
472 display_fmt = FMT_COLUMNS;
473 break;
Eric Andersene1850dd1999-11-19 05:42:32 +0000474#ifdef BB_FEATURE_LS_FILETYPES
Erik Andersene49d5ec2000-02-08 19:58:47 +0000475 case 'p':
476 opts |= DISP_FTYPE;
477 break;
478 case 'F':
479 opts |= DISP_FTYPE | DISP_EXEC;
480 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000481#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000482 case 'A':
483 opts |= DISP_HIDDEN;
484 break;
485 case 'a':
486 opts |= DISP_HIDDEN | DISP_DOT;
487 break;
488 case 'n':
489 opts |= DISP_NUMERIC;
490 break;
491 case 'd':
492 opts |= DIR_NOLIST;
493 break;
Eric Andersene1850dd1999-11-19 05:42:32 +0000494#ifdef BB_FEATURE_LS_TIMESTAMPS
Erik Andersene49d5ec2000-02-08 19:58:47 +0000495 case 'u':
496 time_fmt = TIME_ACCESS;
497 break;
498 case 'c':
499 time_fmt = TIME_CHANGE;
500 break;
501 case 'e':
502 opts |= DISP_FULLTIME;
503 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000504#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000505#ifdef BB_FEATURE_LS_RECURSIVE
506 case 'R':
507 opts |= DISP_RECURSIVE;
508 break;
509#endif
Eric Andersen7c31ea42000-07-03 14:55:49 +0000510 case 'g': /* ignore -- for ftp servers */
511 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000512 default:
513 goto print_usage_message;
Eric Andersencc8ed391999-10-05 16:24:54 +0000514 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515
Eric Andersencc8ed391999-10-05 16:24:54 +0000516 argi++;
517 }
518
519 /* choose a display format */
520 if (display_fmt == FMT_AUTO)
Eric Andersen08b10341999-11-19 02:38:58 +0000521 display_fmt = isatty(fileno(stdout)) ? FMT_COLUMNS : FMT_SINGLE;
Eric Andersencc8ed391999-10-05 16:24:54 +0000522 if (argi < argc - 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000523 opts |= DISP_DIRNAME; /* 2 or more items? label directories */
Eric Andersene1850dd1999-11-19 05:42:32 +0000524#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersencc8ed391999-10-05 16:24:54 +0000525 /* could add a -w option and/or TIOCGWINSZ call */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526 if (terminal_width < 1)
527 terminal_width = TERMINAL_WIDTH;
528
Eric Andersencc8ed391999-10-05 16:24:54 +0000529 for (i = argi; i < argc; i++) {
530 int len = strlen(argv[i]);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000532 if (toplevel_column_width < len)
533 toplevel_column_width = len;
Eric Andersencc8ed391999-10-05 16:24:54 +0000534 }
535#endif
536
537 /* process files specified, or current directory if none */
Eric Andersena42982e2000-06-07 17:28:53 +0000538#ifdef BB_FEATURE_LS_RECURSIVE
539 if (opts & DISP_RECURSIVE) {
540 i = 0;
541 if (argi == argc) {
542 i = recursiveAction(".", TRUE, FALSE, FALSE, NULL, dirAction, NULL);
543 }
544 while (argi < argc) {
545 i |= recursiveAction(argv[argi++], TRUE, FALSE, FALSE, NULL, dirAction, NULL);
546 }
547 } else
548#endif
549 {
550 i = 0;
551 if (argi == argc)
552 i = list_item(".");
553 while (argi < argc)
554 i |= list_item(argv[argi++]);
555 newline();
556 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000557 exit(i);
Eric Andersencc8ed391999-10-05 16:24:54 +0000558
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559 print_usage_message:
560 usage(ls_usage);
561 exit(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000562}