blob: 10191476e2f7e70b871b1f9123d5b774fec695c8 [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>
Eric Andersen11c65522000-09-07 17:24:47 +00005 *
Eric Andersencc8ed391999-10-05 16:24:54 +00006 * 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
Eric Andersen77d92682001-05-23 20:32:09 +000024 * (i.e., the ones I couldn't live without :-) All features which involve
Eric Andersencc8ed391999-10-05 16:24:54 +000025 * 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
Eric Andersene57d54b2001-01-30 18:03:11 +000044enum {
45 TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */
46 COLUMN_WIDTH = 14, /* default if AUTOWIDTH not defined */
47 COLUMN_GAP = 2, /* includes the file type char */
48};
49
Eric Andersencc8ed391999-10-05 16:24:54 +000050
51/************************************************************************/
52
Eric Andersen11c65522000-09-07 17:24:47 +000053#include <sys/types.h>
54#include <sys/stat.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000055#include <stdio.h>
56#include <unistd.h>
57#include <dirent.h>
58#include <errno.h>
59#include <stdio.h>
Eric Andersen11c65522000-09-07 17:24:47 +000060#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000061#include <stdlib.h>
Eric Andersen5307eca2001-01-26 01:52:43 +000062#include <fcntl.h>
63#include <signal.h>
64#include <sys/ioctl.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000065#include "busybox.h"
Eric Andersen5307eca2001-01-26 01:52:43 +000066
Eric Andersenf1142c52001-02-20 06:16:29 +000067#ifdef BB_FEATURE_LS_TIMESTAMPS
68#include <time.h>
69#endif
70
Eric Andersen30f64c32001-01-30 19:23:46 +000071#ifndef MAJOR
Erik Andersen1ad302a2000-03-24 00:54:46 +000072#define MAJOR(dev) (((dev)>>8)&0xff)
73#define MINOR(dev) ((dev)&0xff)
74#endif
75
Eric Andersen11c65522000-09-07 17:24:47 +000076/* what is the overall style of the listing */
Mark Whitley59ab0252001-01-23 22:30:04 +000077enum {
78STYLE_AUTO = 0,
79STYLE_LONG = 1, /* one record per line, extended info */
80STYLE_SINGLE = 2, /* one record per line */
81STYLE_COLUMNS = 3 /* fill columns */
82};
Eric Andersencc8ed391999-10-05 16:24:54 +000083
Eric Andersen11c65522000-09-07 17:24:47 +000084/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
85/* what file information will be listed */
86#define LIST_INO (1<<0)
87#define LIST_BLOCKS (1<<1)
88#define LIST_MODEBITS (1<<2)
89#define LIST_NLINKS (1<<3)
90#define LIST_ID_NAME (1<<4)
91#define LIST_ID_NUMERIC (1<<5)
92#define LIST_SIZE (1<<6)
93#define LIST_DEV (1<<7)
94#define LIST_DATE_TIME (1<<8)
95#define LIST_FULLTIME (1<<9)
96#define LIST_FILENAME (1<<10)
97#define LIST_SYMLINK (1<<11)
98#define LIST_FILETYPE (1<<12)
99#define LIST_EXEC (1<<13)
100
101/* what files will be displayed */
102#define DISP_NORMAL (0) /* show normal filenames */
103#define DISP_DIRNAME (1<<0) /* 2 or more items? label directories */
104#define DISP_HIDDEN (1<<1) /* show filenames starting with . */
105#define DISP_DOT (1<<2) /* show . and .. */
106#define DISP_NOLIST (1<<3) /* show directory as itself, not contents */
107#define DISP_RECURSIVE (1<<4) /* show directory and everything below it */
108#define DISP_ROWS (1<<5) /* print across rows */
109
110#ifdef BB_FEATURE_LS_SORTFILES
111/* how will the files be sorted */
Mark Whitley59ab0252001-01-23 22:30:04 +0000112static const int SORT_FORWARD = 0; /* sort in reverse order */
113static const int SORT_REVERSE = 1; /* sort in reverse order */
114static const int SORT_NAME = 2; /* sort by file name */
115static const int SORT_SIZE = 3; /* sort by file size */
116static const int SORT_ATIME = 4; /* sort by last access time */
117static const int SORT_CTIME = 5; /* sort by last change time */
118static const int SORT_MTIME = 6; /* sort by last modification time */
119static const int SORT_VERSION = 7; /* sort by version */
120static const int SORT_EXT = 8; /* sort by file name extension */
121static const int SORT_DIR = 9; /* sort by file or directory */
Eric Andersencc8ed391999-10-05 16:24:54 +0000122#endif
123
Eric Andersene1850dd1999-11-19 05:42:32 +0000124#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000125/* which of the three times will be used */
Mark Whitley59ab0252001-01-23 22:30:04 +0000126static const int TIME_MOD = 0;
127static const int TIME_CHANGE = 1;
128static const int TIME_ACCESS = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +0000129#endif
130
Eric Andersen11c65522000-09-07 17:24:47 +0000131#define LIST_SHORT (LIST_FILENAME)
132#define LIST_ISHORT (LIST_INO | LIST_FILENAME)
133#define LIST_LONG (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | \
134 LIST_SIZE | LIST_DATE_TIME | LIST_FILENAME | \
135 LIST_SYMLINK)
136#define LIST_ILONG (LIST_INO | LIST_LONG)
Eric Andersencc8ed391999-10-05 16:24:54 +0000137
Mark Whitley59ab0252001-01-23 22:30:04 +0000138static const int SPLIT_DIR = 0;
139static const int SPLIT_FILE = 1;
140static const int SPLIT_SUBDIR = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +0000141
Eric Andersen11c65522000-09-07 17:24:47 +0000142#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
143#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
144#ifdef BB_FEATURE_LS_FILETYPES
145#define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
146#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147
Eric Andersen11c65522000-09-07 17:24:47 +0000148/*
149 * a directory entry and its stat info are stored here
150 */
151struct dnode { /* the basic node */
152 char *name; /* the dir entry name */
153 char *fullname; /* the dir entry name */
154 struct stat dstat; /* the file stat info */
155 struct dnode *next; /* point at the next node */
156};
157typedef struct dnode dnode_t;
158
Eric Andersen3e6ff902001-03-09 21:24:12 +0000159static struct dnode **list_dir(char *);
160static struct dnode **dnalloc(int);
161static int list_single(struct dnode *);
Eric Andersen11c65522000-09-07 17:24:47 +0000162
Mark Whitley59ab0252001-01-23 22:30:04 +0000163static unsigned int disp_opts;
164static unsigned int style_fmt;
165static unsigned int list_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000166#ifdef BB_FEATURE_LS_SORTFILES
Mark Whitley59ab0252001-01-23 22:30:04 +0000167static unsigned int sort_opts;
168static unsigned int sort_order;
Eric Andersen11c65522000-09-07 17:24:47 +0000169#endif
170#ifdef BB_FEATURE_LS_TIMESTAMPS
Mark Whitley59ab0252001-01-23 22:30:04 +0000171static unsigned int time_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000172#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000173#ifdef BB_FEATURE_LS_FOLLOWLINKS
174static unsigned int follow_links=FALSE;
175#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000176
177static unsigned short column = 0;
178#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersene57d54b2001-01-30 18:03:11 +0000179static unsigned short terminal_width = TERMINAL_WIDTH;
180static unsigned short column_width = COLUMN_WIDTH;
181static unsigned short tabstops = COLUMN_GAP;
Eric Andersenf5d5e772001-01-24 23:34:48 +0000182#else
Eric Andersena528dc72001-01-26 18:30:12 +0000183static unsigned short column_width = COLUMN_WIDTH;
Eric Andersen11c65522000-09-07 17:24:47 +0000184#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000185
Matt Kraai33fdae52000-10-13 17:59:43 +0000186static int status = EXIT_SUCCESS;
187
Richard June6d0921c2001-01-22 22:35:38 +0000188#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersen3e6ff902001-03-09 21:24:12 +0000189static unsigned long ls_disp_hr = 0;
Richard June6d0921c2001-01-22 22:35:38 +0000190#endif
191
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000192static int my_stat(struct dnode *cur)
193{
194#ifdef BB_FEATURE_LS_FOLLOWLINKS
195 if (follow_links == TRUE) {
196 if (stat(cur->fullname, &cur->dstat)) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000197 perror_msg("%s", cur->fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000198 status = EXIT_FAILURE;
199 free(cur->fullname);
200 free(cur);
201 return -1;
202 }
203 } else
204#endif
205 if (lstat(cur->fullname, &cur->dstat)) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000206 perror_msg("%s", cur->fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000207 status = EXIT_FAILURE;
208 free(cur->fullname);
209 free(cur);
210 return -1;
211 }
212 return 0;
213}
214
Eric Andersencc8ed391999-10-05 16:24:54 +0000215static void newline(void)
216{
Eric Andersen11c65522000-09-07 17:24:47 +0000217 if (column > 0) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000218 putchar('\n');
Eric Andersen11c65522000-09-07 17:24:47 +0000219 column = 0;
Eric Andersen79565b62000-08-11 18:10:21 +0000220 }
221}
222
Eric Andersen11c65522000-09-07 17:24:47 +0000223/*----------------------------------------------------------------------*/
224#ifdef BB_FEATURE_LS_FILETYPES
225static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000226{
Eric Andersen11c65522000-09-07 17:24:47 +0000227 if ( !(list_fmt & LIST_FILETYPE))
228 return '\0';
229 if ((list_fmt & LIST_EXEC) && S_ISREG(mode)
230 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
231 return APPCHAR(mode);
232}
233#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000234
Eric Andersen11c65522000-09-07 17:24:47 +0000235/*----------------------------------------------------------------------*/
236static void nexttabstop( void )
237{
238 static short nexttab= 0;
239 int n=0;
240
241 if (column > 0) {
242 n= nexttab - column;
243 if (n < 1) n= 1;
244 while (n--) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000245 putchar(' ');
Eric Andersen11c65522000-09-07 17:24:47 +0000246 column++;
247 }
248 }
Eric Andersenf5d5e772001-01-24 23:34:48 +0000249 nexttab= column + column_width + COLUMN_GAP;
Eric Andersen11c65522000-09-07 17:24:47 +0000250}
251
252/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000253static int is_subdir(struct dnode *dn)
254{
255 return (S_ISDIR(dn->dstat.st_mode) && strcmp(dn->name, ".") != 0 &&
256 strcmp(dn->name, "..") != 0);
257}
258
Eric Andersen3e6ff902001-03-09 21:24:12 +0000259static int countdirs(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000260{
261 int i, dirs;
262
Eric Andersen11c65522000-09-07 17:24:47 +0000263 if (dn==NULL || nfiles < 1) return(0);
264 dirs= 0;
265 for (i=0; i<nfiles; i++) {
266 if (S_ISDIR(dn[i]->dstat.st_mode)) dirs++;
267 }
268 return(dirs);
269}
270
Eric Andersen3e6ff902001-03-09 21:24:12 +0000271static int countsubdirs(struct dnode **dn, int nfiles)
Eric Andersencf1189f2000-11-29 21:52:06 +0000272{
273 int i, subdirs;
274
275 if (dn == NULL || nfiles < 1) return 0;
276 subdirs = 0;
277 for (i = 0; i < nfiles; i++)
278 if (is_subdir(dn[i]))
279 subdirs++;
280 return subdirs;
281}
282
Eric Andersen3e6ff902001-03-09 21:24:12 +0000283static int countfiles(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000284{
285 int nfiles;
286 struct dnode *cur;
287
288 if (dnp == NULL) return(0);
289 nfiles= 0;
290 for (cur= dnp[0]; cur->next != NULL ; cur= cur->next) nfiles++;
291 nfiles++;
292 return(nfiles);
293}
294
295/* get memory to hold an array of pointers */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000296static struct dnode **dnalloc(int num)
Eric Andersen11c65522000-09-07 17:24:47 +0000297{
298 struct dnode **p;
299
300 if (num < 1) return(NULL);
301
302 p= (struct dnode **)xcalloc((size_t)num, (size_t)(sizeof(struct dnode *)));
303 return(p);
304}
305
Eric Andersen20aab262001-07-19 22:28:02 +0000306#ifdef BB_FEATURE_LS_RECURSIVE
Eric Andersen3e6ff902001-03-09 21:24:12 +0000307static void dfree(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000308{
309 struct dnode *cur, *next;
310
311 if(dnp == NULL) return;
312
313 cur=dnp[0];
314 while (cur != NULL) {
315 if (cur->fullname != NULL) free(cur->fullname); /* free the filename */
316 next= cur->next;
317 free(cur); /* free the dnode */
318 cur= next;
319 }
320 free(dnp); /* free the array holding the dnode pointers */
321}
Eric Andersen20aab262001-07-19 22:28:02 +0000322#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000323
Eric Andersen3e6ff902001-03-09 21:24:12 +0000324static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
Eric Andersen11c65522000-09-07 17:24:47 +0000325{
326 int dncnt, i, d;
327 struct dnode **dnp;
328
329 if (dn==NULL || nfiles < 1) return(NULL);
330
331 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000332 if (which == SPLIT_SUBDIR)
333 dncnt = countsubdirs(dn, nfiles);
334 else {
335 dncnt= countdirs(dn, nfiles); /* assume we are looking for dirs */
336 if (which == SPLIT_FILE)
337 dncnt= nfiles - dncnt; /* looking for files */
338 }
Eric Andersen11c65522000-09-07 17:24:47 +0000339
340 /* allocate a file array and a dir array */
341 dnp= dnalloc(dncnt);
342
343 /* copy the entrys into the file or dir array */
344 for (d= i=0; i<nfiles; i++) {
345 if (which == SPLIT_DIR) {
346 if (S_ISDIR(dn[i]->dstat.st_mode)) {
347 dnp[d++]= dn[i];
348 } /* else skip the file */
Eric Andersencf1189f2000-11-29 21:52:06 +0000349 } else if (which == SPLIT_SUBDIR) {
350 if (is_subdir(dn[i])) {
351 dnp[d++]= dn[i];
352 } /* else skip the file or dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000353 } else {
354 if (!(S_ISDIR(dn[i]->dstat.st_mode))) {
355 dnp[d++]= dn[i];
356 } /* else skip the dir */
357 }
358 }
359 return(dnp);
360}
361
362/*----------------------------------------------------------------------*/
363#ifdef BB_FEATURE_LS_SORTFILES
Eric Andersen3e6ff902001-03-09 21:24:12 +0000364static int sortcmp(struct dnode *d1, struct dnode *d2)
Eric Andersen11c65522000-09-07 17:24:47 +0000365{
366 int cmp, dif;
367
368 cmp= 0;
369 if (sort_opts == SORT_SIZE) {
370 dif= (int)(d1->dstat.st_size - d2->dstat.st_size);
371 } else if (sort_opts == SORT_ATIME) {
372 dif= (int)(d1->dstat.st_atime - d2->dstat.st_atime);
373 } else if (sort_opts == SORT_CTIME) {
374 dif= (int)(d1->dstat.st_ctime - d2->dstat.st_ctime);
375 } else if (sort_opts == SORT_MTIME) {
376 dif= (int)(d1->dstat.st_mtime - d2->dstat.st_mtime);
377 } else if (sort_opts == SORT_DIR) {
378 dif= S_ISDIR(d1->dstat.st_mode) - S_ISDIR(d2->dstat.st_mode);
379 /* } else if (sort_opts == SORT_VERSION) { */
380 /* } else if (sort_opts == SORT_EXT) { */
381 } else { /* assume SORT_NAME */
382 dif= 0;
383 }
384
385 if (dif > 0) cmp= -1;
386 if (dif < 0) cmp= 1;
387 if (dif == 0) {
388 /* sort by name- may be a tie_breaker for time or size cmp */
389 dif= strcmp(d1->name, d2->name);
390 if (dif > 0) cmp= 1;
391 if (dif < 0) cmp= -1;
392 }
393
394 if (sort_order == SORT_REVERSE) {
395 cmp= -1 * cmp;
396 }
397 return(cmp);
398}
399
400/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000401static void shellsort(struct dnode **dn, int size)
Eric Andersen11c65522000-09-07 17:24:47 +0000402{
403 struct dnode *temp;
404 int gap, i, j;
405
406 /* shell short the array */
407 if(dn==NULL || size < 2) return;
408
409 for (gap= size/2; gap>0; gap /=2) {
410 for (i=gap; i<size; i++) {
411 for (j= i-gap; j>=0; j-=gap) {
412 if (sortcmp(dn[j], dn[j+gap]) <= 0)
413 break;
414 /* they are out of order, swap them */
415 temp= dn[j];
416 dn[j]= dn[j+gap];
417 dn[j+gap]= temp;
418 }
419 }
420 }
421}
422#endif
423
424/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000425static void showfiles(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000426{
427 int i, ncols, nrows, row, nc;
428#ifdef BB_FEATURE_AUTOWIDTH
429 int len;
430#endif
431
432 if(dn==NULL || nfiles < 1) return;
433
434#ifdef BB_FEATURE_AUTOWIDTH
435 /* find the longest file name- use that as the column width */
436 column_width= 0;
437 for (i=0; i<nfiles; i++) {
438 len= strlen(dn[i]->name) +
439 ((list_fmt & LIST_INO) ? 8 : 0) +
440 ((list_fmt & LIST_BLOCKS) ? 5 : 0)
441 ;
Eric Andersene57d54b2001-01-30 18:03:11 +0000442 if (column_width < len)
443 column_width= len;
Eric Andersen11c65522000-09-07 17:24:47 +0000444 }
Eric Andersene57d54b2001-01-30 18:03:11 +0000445 if (column_width >= 6)
446 ncols = (int)(terminal_width / (column_width + COLUMN_GAP));
447 else {
448 ncols = 1;
449 column_width = COLUMN_WIDTH;
450 }
Eric Andersenf5d5e772001-01-24 23:34:48 +0000451#else
452 ncols= TERMINAL_WIDTH;
453#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000454 switch (style_fmt) {
455 case STYLE_LONG: /* one record per line, extended info */
456 case STYLE_SINGLE: /* one record per line */
457 ncols= 1;
458 break;
459 }
460
Eric Andersene57d54b2001-01-30 18:03:11 +0000461 if (ncols > 1) {
462 nrows = nfiles / ncols;
463 } else {
464 nrows = nfiles;
465 ncols = 1;
466 }
Eric Andersen11c65522000-09-07 17:24:47 +0000467 if ((nrows * ncols) < nfiles) nrows++; /* round up fractionals */
468
469 if (nrows > nfiles) nrows= nfiles;
470 for (row=0; row<nrows; row++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000471 for (nc=0; nc<ncols; nc++) {
472 /* reach into the array based on the column and row */
Eric Andersen11c65522000-09-07 17:24:47 +0000473 i= (nc * nrows) + row; /* assume display by column */
474 if (disp_opts & DISP_ROWS)
475 i= (row * ncols) + nc; /* display across row */
476 if (i < nfiles) {
477 nexttabstop();
478 list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000479 }
480 }
Eric Andersena42982e2000-06-07 17:28:53 +0000481 newline();
482 }
Eric Andersen11c65522000-09-07 17:24:47 +0000483}
484
485/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000486static void showdirs(struct dnode **dn, int ndirs)
Eric Andersen11c65522000-09-07 17:24:47 +0000487{
488 int i, nfiles;
489 struct dnode **subdnp;
Matt Kraaib273d662000-10-28 01:21:22 +0000490#ifdef BB_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000491 int dndirs;
492 struct dnode **dnd;
493#endif
494
495 if (dn==NULL || ndirs < 1) return;
496
497 for (i=0; i<ndirs; i++) {
498 if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000499 printf("\n%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000500 }
501 subdnp= list_dir(dn[i]->fullname);
502 nfiles= countfiles(subdnp);
503 if (nfiles > 0) {
504 /* list all files at this level */
505#ifdef BB_FEATURE_LS_SORTFILES
506 shellsort(subdnp, nfiles);
507#endif
508 showfiles(subdnp, nfiles);
509#ifdef BB_FEATURE_LS_RECURSIVE
510 if (disp_opts & DISP_RECURSIVE) {
511 /* recursive- list the sub-dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000512 dnd= splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
513 dndirs= countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000514 if (dndirs > 0) {
Matt Kraaia5bd2682000-10-28 06:40:09 +0000515#ifdef BB_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000516 shellsort(dnd, dndirs);
Matt Kraaia5bd2682000-10-28 06:40:09 +0000517#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000518 showdirs(dnd, dndirs);
519 free(dnd); /* free the array of dnode pointers to the dirs */
520 }
521 }
522 dfree(subdnp); /* free the dnodes and the fullname mem */
523#endif
524 }
525 }
526}
527
528/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000529static struct dnode **list_dir(char *path)
Eric Andersen11c65522000-09-07 17:24:47 +0000530{
531 struct dnode *dn, *cur, **dnp;
532 struct dirent *entry;
533 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000534 int i, nfiles;
535
536 if (path==NULL) return(NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000537
538 dn= NULL;
539 nfiles= 0;
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000540 dir = opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000541 if (dir == NULL) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000542 perror_msg("%s", path);
Matt Kraai33fdae52000-10-13 17:59:43 +0000543 status = EXIT_FAILURE;
Eric Andersen11c65522000-09-07 17:24:47 +0000544 return(NULL); /* could not open the dir */
545 }
546 while ((entry = readdir(dir)) != NULL) {
547 /* are we going to list the file- it may be . or .. or a hidden file */
Matt Kraai782ab3c2001-04-23 01:07:00 +0000548 if ((strcmp(entry->d_name, ".")==0) && !(disp_opts & DISP_DOT))
549 continue;
550 if ((strcmp(entry->d_name, "..")==0) && !(disp_opts & DISP_DOT))
551 continue;
552 if ((entry->d_name[0] == '.') && !(disp_opts & DISP_HIDDEN))
553 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000554 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
Matt Kraai782ab3c2001-04-23 01:07:00 +0000555 cur->fullname = concat_path_file(path, entry->d_name);
556 cur->name = cur->fullname +
557 (strlen(cur->fullname) - strlen(entry->d_name));
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000558 if (my_stat(cur))
Eric Andersen11c65522000-09-07 17:24:47 +0000559 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000560 cur->next= dn;
561 dn= cur;
562 nfiles++;
563 }
564 closedir(dir);
565
566 /* now that we know how many files there are
567 ** allocate memory for an array to hold dnode pointers
568 */
569 if (nfiles < 1) return(NULL);
570 dnp= dnalloc(nfiles);
571 for (i=0, cur=dn; i<nfiles; i++) {
572 dnp[i]= cur; /* save pointer to node in array */
573 cur= cur->next;
574 }
575
576 return(dnp);
577}
578
579/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000580static int list_single(struct dnode *dn)
Eric Andersen11c65522000-09-07 17:24:47 +0000581{
Mark Whitley8a633262001-04-30 18:17:00 +0000582 int i;
Eric Andersen11c65522000-09-07 17:24:47 +0000583 char scratch[BUFSIZ + 1];
584#ifdef BB_FEATURE_LS_TIMESTAMPS
585 char *filetime;
586 time_t ttime, age;
587#endif
Matt Kraaie93abf92000-11-18 01:08:24 +0000588#if defined (BB_FEATURE_LS_FILETYPES)
Eric Andersen11c65522000-09-07 17:24:47 +0000589 struct stat info;
Matt Kraaib273d662000-10-28 01:21:22 +0000590#endif
591#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000592 char append;
593#endif
594
595 if (dn==NULL || dn->fullname==NULL) return(0);
596
597#ifdef BB_FEATURE_LS_TIMESTAMPS
598 ttime= dn->dstat.st_mtime; /* the default time */
599 if (time_fmt & TIME_ACCESS) ttime= dn->dstat.st_atime;
600 if (time_fmt & TIME_CHANGE) ttime= dn->dstat.st_ctime;
601 filetime= ctime(&ttime);
602#endif
603#ifdef BB_FEATURE_LS_FILETYPES
604 append = append_char(dn->dstat.st_mode);
605#endif
606
607 for (i=0; i<=31; i++) {
608 switch (list_fmt & (1<<i)) {
609 case LIST_INO:
Eric Andersen24982c52001-06-25 19:31:48 +0000610 printf("%7ld ", (long int)dn->dstat.st_ino);
Eric Andersen11c65522000-09-07 17:24:47 +0000611 column += 8;
612 break;
613 case LIST_BLOCKS:
Richard June6d0921c2001-01-22 22:35:38 +0000614#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersen7e516792001-06-30 18:00:26 +0000615 fprintf(stdout, "%6s ", make_human_readable_str(dn->dstat.st_blocks>>1,
Manuel Novoa III a77cfbf2001-06-30 07:46:50 +0000616 KILOBYTE, (ls_disp_hr==TRUE)? 0: KILOBYTE));
Richard June6d0921c2001-01-22 22:35:38 +0000617#else
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000618#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000619 printf("%4lld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000620#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000621 printf("%4ld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000622#endif
Richard June6d0921c2001-01-22 22:35:38 +0000623#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000624 column += 5;
625 break;
626 case LIST_MODEBITS:
Eric Andersenf429bac2001-06-13 08:02:45 +0000627 printf("%-10s ", (char *)mode_string(dn->dstat.st_mode));
Eric Andersen11c65522000-09-07 17:24:47 +0000628 column += 10;
629 break;
630 case LIST_NLINKS:
Eric Andersene76c3b02001-04-05 03:14:39 +0000631 printf("%4ld ", (long)dn->dstat.st_nlink);
Eric Andersen11c65522000-09-07 17:24:47 +0000632 column += 10;
633 break;
634 case LIST_ID_NAME:
635#ifdef BB_FEATURE_LS_USERNAME
Matt Kraaie93abf92000-11-18 01:08:24 +0000636 my_getpwuid(scratch, dn->dstat.st_uid);
Eric Andersene57d54b2001-01-30 18:03:11 +0000637 printf("%-8.8s ", scratch);
Matt Kraaie93abf92000-11-18 01:08:24 +0000638 my_getgrgid(scratch, dn->dstat.st_gid);
Eric Andersenf429bac2001-06-13 08:02:45 +0000639 printf("%-8.8s ", scratch);
Eric Andersen11c65522000-09-07 17:24:47 +0000640 column += 17;
Eric Andersen11c65522000-09-07 17:24:47 +0000641 break;
642#endif
643 case LIST_ID_NUMERIC:
Matt Kraai12f417e2001-01-18 02:57:08 +0000644 printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Eric Andersen11c65522000-09-07 17:24:47 +0000645 column += 17;
646 break;
647 case LIST_SIZE:
648 case LIST_DEV:
649 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000650 printf("%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev));
Eric Andersen11c65522000-09-07 17:24:47 +0000651 } else {
Richard June6d0921c2001-01-22 22:35:38 +0000652#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersen91c93882001-04-03 23:14:29 +0000653 if (ls_disp_hr==TRUE) {
Eric Andersenf429bac2001-06-13 08:02:45 +0000654 fprintf(stdout, "%8s ", make_human_readable_str(dn->dstat.st_size, 1, 0));
Eric Andersen91c93882001-04-03 23:14:29 +0000655 } else
656#endif
657 {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000658#if _FILE_OFFSET_BITS == 64
Eric Andersen250a2212001-04-05 23:26:44 +0000659 printf("%9lld ", (long long)dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000660#else
Eric Andersen91c93882001-04-03 23:14:29 +0000661 printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000662#endif
Eric Andersen91c93882001-04-03 23:14:29 +0000663 }
Eric Andersen11c65522000-09-07 17:24:47 +0000664 }
665 column += 10;
666 break;
667#ifdef BB_FEATURE_LS_TIMESTAMPS
668 case LIST_FULLTIME:
669 case LIST_DATE_TIME:
670 if (list_fmt & LIST_FULLTIME) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000671 printf("%24.24s ", filetime);
Eric Andersen11c65522000-09-07 17:24:47 +0000672 column += 25;
673 break;
674 }
675 age = time(NULL) - ttime;
Matt Kraai12f417e2001-01-18 02:57:08 +0000676 printf("%6.6s ", filetime+4);
Eric Andersen11c65522000-09-07 17:24:47 +0000677 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
678 /* hh:mm if less than 6 months old */
Matt Kraai12f417e2001-01-18 02:57:08 +0000679 printf("%5.5s ", filetime+11);
Eric Andersen11c65522000-09-07 17:24:47 +0000680 } else {
Matt Kraai12f417e2001-01-18 02:57:08 +0000681 printf(" %4.4s ", filetime+20);
Eric Andersen11c65522000-09-07 17:24:47 +0000682 }
683 column += 13;
684 break;
685#endif
686 case LIST_FILENAME:
Matt Kraai12f417e2001-01-18 02:57:08 +0000687 printf("%s", dn->name);
Eric Andersen11c65522000-09-07 17:24:47 +0000688 column += strlen(dn->name);
689 break;
690 case LIST_SYMLINK:
691 if (S_ISLNK(dn->dstat.st_mode)) {
Mark Whitley8a633262001-04-30 18:17:00 +0000692 char *lpath = xreadlink(dn->fullname);
693 if (lpath) {
694 printf(" -> %s", lpath);
Eric Andersen11c65522000-09-07 17:24:47 +0000695#ifdef BB_FEATURE_LS_FILETYPES
696 if (!stat(dn->fullname, &info)) {
697 append = append_char(info.st_mode);
698 }
699#endif
Mark Whitley8a633262001-04-30 18:17:00 +0000700 column += strlen(lpath) + 4;
701 free(lpath);
Eric Andersen11c65522000-09-07 17:24:47 +0000702 }
703 }
704 break;
705#ifdef BB_FEATURE_LS_FILETYPES
706 case LIST_FILETYPE:
707 if (append != '\0') {
Matt Kraai12f417e2001-01-18 02:57:08 +0000708 printf("%1c", append);
Eric Andersen11c65522000-09-07 17:24:47 +0000709 column++;
710 }
711 break;
712#endif
713 }
714 }
715
716 return(0);
717}
718
719/*----------------------------------------------------------------------*/
720extern int ls_main(int argc, char **argv)
721{
722 struct dnode **dnf, **dnd;
723 int dnfiles, dndirs;
724 struct dnode *dn, *cur, **dnp;
725 int i, nfiles;
726 int opt;
727 int oi, ac;
728 char **av;
Eric Andersen1e4b9572001-01-26 18:09:13 +0000729#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersen5307eca2001-01-26 01:52:43 +0000730 struct winsize win = { 0, 0, 0, 0 };
731#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000732
733 disp_opts= DISP_NORMAL;
734 style_fmt= STYLE_AUTO;
735 list_fmt= LIST_SHORT;
736#ifdef BB_FEATURE_LS_SORTFILES
737 sort_opts= SORT_NAME;
Mark Whitley59ab0252001-01-23 22:30:04 +0000738 sort_order= SORT_FORWARD;
Eric Andersen11c65522000-09-07 17:24:47 +0000739#endif
740#ifdef BB_FEATURE_LS_TIMESTAMPS
741 time_fmt= TIME_MOD;
742#endif
Mark Whitley59ab0252001-01-23 22:30:04 +0000743#ifdef BB_FEATURE_AUTOWIDTH
Mark Whitley9b300d02001-02-01 19:39:43 +0000744 ioctl(fileno(stdout), TIOCGWINSZ, &win);
745 if (win.ws_row > 4)
746 column_width = win.ws_row - 2;
747 if (win.ws_col > 0)
748 terminal_width = win.ws_col - 1;
Eric Andersen5307eca2001-01-26 01:52:43 +0000749#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000750 nfiles=0;
751
Eric Andersen11c65522000-09-07 17:24:47 +0000752 /* process options */
753 while ((opt = getopt(argc, argv, "1AaCdgilnsx"
754#ifdef BB_FEATURE_AUTOWIDTH
755"T:w:"
756#endif
757#ifdef BB_FEATURE_LS_FILETYPES
758"Fp"
759#endif
760#ifdef BB_FEATURE_LS_RECURSIVE
761"R"
762#endif
763#ifdef BB_FEATURE_LS_SORTFILES
764"rSvX"
765#endif
766#ifdef BB_FEATURE_LS_TIMESTAMPS
767"cetu"
768#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000769#ifdef BB_FEATURE_LS_FOLLOWLINKS
770"L"
771#endif
Richard June6d0921c2001-01-22 22:35:38 +0000772#ifdef BB_FEATURE_HUMAN_READABLE
773"h"
774#endif
775"k")) > 0) {
Eric Andersen11c65522000-09-07 17:24:47 +0000776 switch (opt) {
777 case '1': style_fmt = STYLE_SINGLE; break;
778 case 'A': disp_opts |= DISP_HIDDEN; break;
779 case 'a': disp_opts |= DISP_HIDDEN | DISP_DOT; break;
780 case 'C': style_fmt = STYLE_COLUMNS; break;
781 case 'd': disp_opts |= DISP_NOLIST; break;
Eric Andersen11c65522000-09-07 17:24:47 +0000782 case 'g': /* ignore -- for ftp servers */ break;
783 case 'i': list_fmt |= LIST_INO; break;
Richard June6d0921c2001-01-22 22:35:38 +0000784 case 'l':
785 style_fmt = STYLE_LONG;
786 list_fmt |= LIST_LONG;
787#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersen651f8c02001-03-07 03:48:02 +0000788 ls_disp_hr = FALSE;
Richard June6d0921c2001-01-22 22:35:38 +0000789#endif
790 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000791 case 'n': list_fmt |= LIST_ID_NUMERIC; break;
792 case 's': list_fmt |= LIST_BLOCKS; break;
793 case 'x': disp_opts = DISP_ROWS; break;
794#ifdef BB_FEATURE_LS_FILETYPES
795 case 'F': list_fmt |= LIST_FILETYPE | LIST_EXEC; break;
796 case 'p': list_fmt |= LIST_FILETYPE; break;
797#endif
798#ifdef BB_FEATURE_LS_RECURSIVE
799 case 'R': disp_opts |= DISP_RECURSIVE; break;
800#endif
801#ifdef BB_FEATURE_LS_SORTFILES
802 case 'r': sort_order |= SORT_REVERSE; break;
803 case 'S': sort_opts= SORT_SIZE; break;
804 case 'v': sort_opts= SORT_VERSION; break;
805 case 'X': sort_opts= SORT_EXT; break;
806#endif
807#ifdef BB_FEATURE_LS_TIMESTAMPS
Matt Kraaia5bd2682000-10-28 06:40:09 +0000808 case 'e': list_fmt |= LIST_FULLTIME; break;
809 case 'c':
810 time_fmt = TIME_CHANGE;
811#ifdef BB_FEATURE_LS_SORTFILES
812 sort_opts= SORT_CTIME;
813#endif
814 break;
815 case 'u':
816 time_fmt = TIME_ACCESS;
817#ifdef BB_FEATURE_LS_SORTFILES
818 sort_opts= SORT_ATIME;
819#endif
820 break;
821 case 't':
822#ifdef BB_FEATURE_LS_SORTFILES
823 sort_opts= SORT_MTIME;
824#endif
825 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000826#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000827#ifdef BB_FEATURE_LS_FOLLOWLINKS
828 case 'L': follow_links= TRUE; break;
829#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000830#ifdef BB_FEATURE_AUTOWIDTH
831 case 'T': tabstops= atoi(optarg); break;
832 case 'w': terminal_width= atoi(optarg); break;
833#endif
Richard June6d0921c2001-01-22 22:35:38 +0000834#ifdef BB_FEATURE_HUMAN_READABLE
Eric Andersen651f8c02001-03-07 03:48:02 +0000835 case 'h': ls_disp_hr = TRUE; break;
Richard June6d0921c2001-01-22 22:35:38 +0000836#endif
Eric Andersen8b728a22001-03-06 23:14:43 +0000837 case 'k': break;
Eric Andersen11c65522000-09-07 17:24:47 +0000838 default:
839 goto print_usage_message;
840 }
841 }
842
843 /* sort out which command line options take precedence */
844#ifdef BB_FEATURE_LS_RECURSIVE
845 if (disp_opts & DISP_NOLIST)
846 disp_opts &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
847#endif
Matt Kraaia5bd2682000-10-28 06:40:09 +0000848#if defined (BB_FEATURE_LS_TIMESTAMPS) && defined (BB_FEATURE_LS_SORTFILES)
Eric Andersen11c65522000-09-07 17:24:47 +0000849 if (time_fmt & TIME_CHANGE) sort_opts= SORT_CTIME;
850 if (time_fmt & TIME_ACCESS) sort_opts= SORT_ATIME;
851#endif
852 if (style_fmt != STYLE_LONG)
853 list_fmt &= ~LIST_ID_NUMERIC; /* numeric uid only for long list */
854#ifdef BB_FEATURE_LS_USERNAME
855 if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC))
856 list_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
857#endif
858
859 /* choose a display format */
860 if (style_fmt == STYLE_AUTO)
861 style_fmt = isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE;
862
863 /*
864 * when there are no cmd line args we have to supply a default "." arg.
865 * we will create a second argv array, "av" that will hold either
866 * our created "." arg, or the real cmd line args. The av array
867 * just holds the pointers- we don't move the date the pointers
868 * point to.
869 */
870 ac= argc - optind; /* how many cmd line args are left */
871 if (ac < 1) {
872 av= (char **)xcalloc((size_t)1, (size_t)(sizeof(char *)));
873 av[0]= xstrdup(".");
874 ac=1;
875 } else {
876 av= (char **)xcalloc((size_t)ac, (size_t)(sizeof(char *)));
877 for (oi=0 ; oi < ac; oi++) {
878 av[oi]= argv[optind++]; /* copy pointer to real cmd line arg */
879 }
880 }
881
882 /* now, everything is in the av array */
883 if (ac > 1)
884 disp_opts |= DISP_DIRNAME; /* 2 or more items? label directories */
885
886 /* stuff the command line file names into an dnode array */
887 dn=NULL;
888 for (oi=0 ; oi < ac; oi++) {
889 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
890 cur->fullname= xstrdup(av[oi]);
Eric Andersen958c78f2000-10-09 17:51:25 +0000891 cur->name= cur->fullname;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000892 if (my_stat(cur))
Eric Andersen11c65522000-09-07 17:24:47 +0000893 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000894 cur->next= dn;
895 dn= cur;
896 nfiles++;
897 }
898
899 /* now that we know how many files there are
900 ** allocate memory for an array to hold dnode pointers
901 */
902 dnp= dnalloc(nfiles);
903 for (i=0, cur=dn; i<nfiles; i++) {
904 dnp[i]= cur; /* save pointer to node in array */
905 cur= cur->next;
906 }
907
908
909 if (disp_opts & DISP_NOLIST) {
910#ifdef BB_FEATURE_LS_SORTFILES
911 shellsort(dnp, nfiles);
912#endif
913 if (nfiles > 0) showfiles(dnp, nfiles);
914 } else {
915 dnd= splitdnarray(dnp, nfiles, SPLIT_DIR);
916 dnf= splitdnarray(dnp, nfiles, SPLIT_FILE);
917 dndirs= countdirs(dnp, nfiles);
918 dnfiles= nfiles - dndirs;
919 if (dnfiles > 0) {
920#ifdef BB_FEATURE_LS_SORTFILES
921 shellsort(dnf, dnfiles);
922#endif
923 showfiles(dnf, dnfiles);
924 }
925 if (dndirs > 0) {
926#ifdef BB_FEATURE_LS_SORTFILES
927 shellsort(dnd, dndirs);
928#endif
929 showdirs(dnd, dndirs);
930 }
931 }
Matt Kraai33fdae52000-10-13 17:59:43 +0000932 return(status);
Eric Andersencc8ed391999-10-05 16:24:54 +0000933
Erik Andersene49d5ec2000-02-08 19:58:47 +0000934 print_usage_message:
Eric Andersen67991cf2001-02-14 21:23:06 +0000935 show_usage();
Eric Andersencc8ed391999-10-05 16:24:54 +0000936}