Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/e2fsprogs/chattr.c

    r2725 r3232  
    1919 * 98/12/29 - Display version info only when -V specified (G M Sipe)
    2020 */
     21
     22//usage:#define chattr_trivial_usage
     23//usage:       "[-R] [-+=AacDdijsStTu] [-v VERSION] [FILE]..."
     24//usage:#define chattr_full_usage "\n\n"
     25//usage:       "Change file attributes on an ext2 fs\n"
     26//usage:     "\nModifiers:"
     27//usage:     "\n    -   Remove attributes"
     28//usage:     "\n    +   Add attributes"
     29//usage:     "\n    =   Set attributes"
     30//usage:     "\nAttributes:"
     31//usage:     "\n    A   Don't track atime"
     32//usage:     "\n    a   Append mode only"
     33//usage:     "\n    c   Enable compress"
     34//usage:     "\n    D   Write dir contents synchronously"
     35//usage:     "\n    d   Don't backup with dump"
     36//usage:     "\n    i   Cannot be modified (immutable)"
     37//usage:     "\n    j   Write all data to journal first"
     38//usage:     "\n    s   Zero disk storage when deleted"
     39//usage:     "\n    S   Write file contents synchronously"
     40//usage:     "\n    t   Disable tail-merging of partial blocks with other files"
     41//usage:     "\n    u   Allow file to be undeleted"
     42//usage:     "\n    -R  Recurse"
     43//usage:     "\n    -v  Set the file's version/generation number"
    2144
    2245#include "libbb.h"
Note: See TracChangeset for help on using the changeset viewer.