strings: implement -t radix
[oweals/busybox.git] / e2fsprogs / lsattr.c
index 7d475a96913fad29906277ff90b0ce7426871508..d2348b5f741d61be197146f67d04be6fcbb398d5 100644 (file)
@@ -9,14 +9,26 @@
  * This file can be redistributed under the terms of the GNU General
  * Public License
  */
-
-/*
- * History:
- * 93/10/30    - Creation
- * 93/11/13    - Replace stat() calls by lstat() to avoid loops
- * 94/02/27    - Integrated in Ted's distribution
- * 98/12/29    - Display version info only when -V specified (G M Sipe)
- */
+//config:config LSATTR
+//config:      bool "lsattr"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        lsattr lists the file attributes on a second extended file system.
+
+//applet:IF_LSATTR(APPLET(lsattr, BB_DIR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_LSATTR) += lsattr.o e2fs_lib.o
+
+//usage:#define lsattr_trivial_usage
+//usage:       "[-Radlv] [FILE]..."
+//usage:#define lsattr_full_usage "\n\n"
+//usage:       "List ext2 file attributes\n"
+//usage:     "\n       -R      Recurse"
+//usage:     "\n       -a      Don't hide entries starting with ."
+//usage:     "\n       -d      List directory entries instead of contents"
+//usage:     "\n       -l      List long flag names"
+//usage:     "\n       -v      List version/generation number"
 
 #include "libbb.h"
 #include "e2fs_lib.h"