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/util-linux/hexdump.c

    r2725 r3232  
    99 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    1010 */
     11
     12//usage:#define hexdump_trivial_usage
     13//usage:       "[-bcCdefnosvx" IF_FEATURE_HEXDUMP_REVERSE("R") "] [FILE]..."
     14//usage:#define hexdump_full_usage "\n\n"
     15//usage:       "Display FILEs (or stdin) in a user specified format\n"
     16//usage:     "\n    -b      One-byte octal display"
     17//usage:     "\n    -c      One-byte character display"
     18//usage:     "\n    -C      Canonical hex+ASCII, 16 bytes per line"
     19//usage:     "\n    -d      Two-byte decimal display"
     20//usage:     "\n    -e FORMAT_STRING"
     21//usage:     "\n    -f FORMAT_FILE"
     22//usage:     "\n    -n LENGTH   Interpret only LENGTH bytes of input"
     23//usage:     "\n    -o      Two-byte octal display"
     24//usage:     "\n    -s OFFSET   Skip OFFSET bytes"
     25//usage:     "\n    -v      Display all input data"
     26//usage:     "\n    -x      Two-byte hexadecimal display"
     27//usage:    IF_FEATURE_HEXDUMP_REVERSE(
     28//usage:     "\n    -R      Reverse of 'hexdump -Cv'")
     29//usage:
     30//usage:#define hd_trivial_usage
     31//usage:       "FILE..."
     32//usage:#define hd_full_usage "\n\n"
     33//usage:       "hd is an alias for hexdump -C"
    1134
    1235#include "libbb.h"
Note: See TracChangeset for help on using the changeset viewer.