home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / uxutl22a.zip / usage < prev   
Encoding:
Text File  |  1993-05-27  |  22.4 KB  |  777 lines

  1. basename - Display file namename
  2.  
  3.     usage: basename string [suffix]
  4.  
  5.     Display file name.  If suffix is supplied and matches the suffix on the
  6.     filename, the suffix is stripped from the filename.
  7.  
  8. bmgrep - Bmgrep is a fast pattern matching utility, intended to be almost
  9.      identical in functionality to fgrep (ugh!) but much faster. It uses
  10.      the Boyer-Moore algorithm.
  11.  
  12.     usage: bmgrep [-chlnsx1] [-e pattern] [-f file] pattern files
  13.  
  14.     -c:    Count of matching lines
  15.     -h:    No filenames in output
  16.     -l:    List of files containing the pattern
  17.     -n:    Character offset of the pattern
  18.     -s:    Silent mode
  19.     -x:    Only lines which match entirely
  20.     -1:    Stop search after first match
  21.  
  22.  
  23. cal - Display calendar
  24.  
  25.     usage: cal [month] year
  26.  
  27.     Display the calendar for month year.  If month not supplied, display
  28.     the full year calendar.  Note:  month can be the month number or name;
  29.     93 is 93 AD not 1993.
  30.  
  31.  
  32. cat - Concatenate files
  33.  
  34.     usage: cat [-usvtenqbTB] files
  35.  
  36.     -q:    No error reports
  37.     -u:    Unbuffered output
  38.     -s: Strip multiple blank lines
  39.     -v: Print control characters as ^X
  40.     -t:    Print tabs as ^T
  41.     -e: Print $ at end of line
  42.     -n:    Print line number
  43.     -b: Print block number
  44.     -T: Force stdout into text mode (CR/LF translation)
  45.     -B: Force stdout into binary mode (no CR/LF translation)
  46.  
  47.  
  48. cdiff - Context difference
  49.  
  50.     usage: cdiff old new
  51.  
  52.  
  53. cgrep - Search file for pattern and display context
  54.  
  55.     usage: cgrep [-vcilnbs] [-a|w lines] [-e string] [-f file] [string] [files..]
  56.  
  57.     -a num    Set the number of lines to be displayed before (if num is
  58.         negative) or after (if num is positive) the matched line.
  59.     -w num    Set the size of the context window.
  60.     -v:        All lines but those matching are printed.
  61.     -c:        Only a count of    matching lines is printed.
  62.     -i:        Ignore upper/lower case    distinction during comparisons.
  63.     -l:        Only the names of files    with matching lines are    listed (once),
  64.         separated by new-lines.
  65.     -n:        Each line is preceded by its relative line number in the file.
  66.     -b:        Each line is preceded by the block number on which it was found.
  67.         This is sometimes useful in locating disk block numbers by
  68.         context.
  69.     -s:        The error messages produced for    nonexistent or unreadable files
  70.         are suppressed.
  71.     -e expression
  72.         Same as a simple expression argument, but useful when the
  73.         expression begins with a -.
  74.     -f file    The regular expression list is taken from the file.
  75.  
  76.  
  77. chmod - Change file attributes
  78.  
  79.     usage: chmod [-R] [absolute-mode | symbolic-mode | string-mode] files
  80.  
  81.     -R:    Recurse down directories
  82.  
  83.     symbolic mode
  84.  
  85.      A symbolic mode has the form
  86.  
  87.         [who] op permission [op permission ...]
  88.  
  89.      The who value is any combination of the following:
  90.  
  91.          u   Sets user permissions.
  92.          g   Sets group permissions.
  93.          o   Sets other permissions.
  94.          a   Sets all permissions; this is the default.
  95.  
  96.      Group and Other permissions are mapped to user permissions on MSDOS
  97.      and OS/2.
  98.  
  99.      The op value gives the action to take:
  100.  
  101.          +   Turns on a permission.
  102.          -   Turns off a permission.
  103.          =   Turns on the specified permissions and turns off all others.
  104.  
  105.      The permission value is any combination of the following:
  106.  
  107.          r   Read permission.  Ignored for MSDOS & OS/2
  108.          x   Execute permission.  Ignored for MSDOS & OS/2
  109.          w   Write permission.  
  110.          h   HIDDEN attribute. 
  111.          a   ARCHIVE attribute.  
  112.          s   Setuid/Setgid bit. On MSDOS and OS/2 this maps to the
  113.              SYSTEM attribute.
  114.          t   Text bit.  On MSDOS and OS/2 this maps to the ARCHIVED
  115.              attribute.
  116.  
  117.     absolute mode
  118.  
  119.         A octal value made up using by ORing the following values.  Note
  120.         that some values may be invalid.  These are translated into the
  121.         appropriate MSDOS/OS2 values.
  122.  
  123.         4000   HIDDEN Attribute
  124.         2000   SYSTEM Attribute
  125.         1000   ARCHIVE Attribute
  126.         0400   User read. Ignored on MSDOS and OS/2
  127.         0200   User write
  128.         0100   User execute. Ignored on MSDOS and OS/2
  129.         0040   Group read. Ignored on MSDOS and OS/2
  130.         0020   Group write (mapped to user write attribute).
  131.         0010   Group execute. Ignored on MSDOS and OS/2
  132.         0004   Other read. Ignored on MSDOS and OS/2
  133.         0002   Other write (mapped to user write attribute).
  134.         0001   Other execute. Ignored on MSDOS and OS/2
  135.  
  136.         If the last character is a d (as in 001d), the absolute DOS
  137.         values listed below are assumed and no translation takes place.
  138.  
  139.         001 - Read only
  140.         002 - Hidden
  141.         004 - system
  142.         040 - Archived
  143.  
  144.     string mode
  145.         A string matching the output long form for the mode from ls is
  146.         required (rxw------, for example).
  147.  
  148.  
  149. cmp - Compare two files
  150.  
  151.     usage: cmp [-ls] file1 file2
  152.  
  153.     -l:    Report all differences
  154.     -s: Silent mode.  exit code of 1 if there are differences
  155.  
  156.  
  157. comm - select or reject lines common to two sorted files
  158.  
  159.     usage: comm [-[123]] file1 file2
  160.  
  161.     -1:        Reject column 1
  162.     -2:        Reject column 2
  163.     -3:        Reject column 3
  164.  
  165.  
  166. cp - Copy files.
  167.  
  168.     usage: cp [-ipfCrRvn] f1 f2
  169.        cp [-ipfCrRvn] f1 ... fn d1
  170.        cp [-ipfCrRvn] d1 d2
  171.  
  172.     -i:    Ask before copying
  173.     -r: Recurse down directories, copying tree to new location
  174.     -R: Recurse down directories, copying tree to new location
  175.     -v: verbose
  176.     -n: show me what you're going to do, without doing it.
  177.     -p: preserve access times
  178.     -C: Convert sources files from MSDOS format to UNIX format
  179.     -f: Force removal of destination files
  180.  
  181.  
  182. cpio - Archive files
  183.  
  184.     usage: cpio -o [ -acxBTvk ] [ -O <output file> ]
  185.         -i [ -BTxcdmrtuvfsSb6 ] [ -I <input file> ] [ patterns ]
  186.         -p [ -adrxlmuv ] directory
  187.  
  188.     -o:        Output mode
  189.     -i:        Input mode
  190.     -p:        Pass mode
  191.     -a:        Reset access time
  192.     -T:        No swapping in header
  193.     -k:        Skip corrupt start of tape
  194.     -c:        ASCII header
  195.     -B:        5120 byte buffer
  196.     -v:        Verbose flag
  197.     -d:        Create directories
  198.     -x:        Process special files
  199.     -h:        Process symbolic links
  200.     -m:        Reset modification time
  201.     -r:        Rename
  202.     -t:        Print table of contents
  203.     -u:        Copy unconditionally
  204.     -f:        Copy not matching
  205.     -s:        Swap bytes
  206.     -S:        Swap half words
  207.     -b:        Swap bytes and half words
  208.     -6:        Unix 6th edition
  209.     -l:        Link when possible
  210.     -I file:    Use file as input instead of stdin
  211.     -O file:    Use file as output instead of stdout
  212.  
  213.  
  214. csplit - Context or line file splitter
  215.  
  216.     usage: csplit [-s] [-k] [-nnumber] [-f prefix] file args ...
  217.  
  218.     -s:        Suppress printing of character counts
  219.     -k:        Do not delete created files on error
  220.     -f prefix    Prefix for created files (default: xx)
  221.     -n number    Maximum number of files to create (default 99)
  222.  
  223.  
  224. cut - Cut data out of a file
  225.  
  226.  
  227.     usage: cut [ -f{args} [-s] [-d separator ] ] | [ -c{args} ] [filename [...]]
  228.        
  229.     -f{args}:        Comma separated list of fields to extract
  230.     -d separator:    Field separator (default tab)
  231.     -s:            Skip lines with no fields
  232.     -c{args}:        Comma separater list of columns to extract
  233.     
  234.  
  235. date - Display / change date and time
  236.  
  237.     usage: date [-q] [+format] [[MMDDYY]hhmm[ss]]
  238.  
  239.     -q:
  240.     +format:    Display date/time using specified format string
  241.  
  242.     If a new date/time is supplied (last parameter), the system date and
  243.     time is updated.
  244.  
  245.     The format string is constructed as for the library function strftime
  246.     (cf printf).  The following format specifiers are supported:
  247.  
  248.     a    Short day name
  249.     A    Full day name
  250.     b    Short month name
  251.     B    Full month name
  252.     c    Date and Time (%x %X)
  253.     d    Day of month, 2 digits
  254.     D    Long date (%d/%m/%y)
  255.     E    Era name and year
  256.     F    Full month name
  257.     h    Short month name
  258.     H    24 Hour, 2 digits
  259.     I    12 Hour, 2 digits
  260.     j    Day of year, 3 digits
  261.     m    Month number, 2 digits
  262.     M    Minute number, 2 digits
  263.     n    Newline character
  264.     o    Era year (from 0)
  265.     N    Era name (AD)
  266.     p    AM/PM
  267.     r    12 hour Time (%I:%M:%S %p)
  268.     S    Second number, 2 digits
  269.     t    Tab character
  270.     T    24 Hour Time (%H:%M:%S)
  271.     U    Sunday Week of year, 2 digits
  272.     w    Weekday number, 2 digits
  273.     W    Monday Week of year, 2 digits
  274.     x    Short date (%d/%m)
  275.     X    Short Time (%I:%M)
  276.     y    Year number, 2 digits
  277.     Y    Year number, 4 digits
  278.     Z    Time zone
  279.     z    Time zone
  280.  
  281.     Field justification and precision can be specified in a similar
  282.     manner to that in printf using digits, . and -.  Any specified
  283.     field width/precision overrides the default.
  284.  
  285.     %    Format symbol
  286.     .    Precision
  287.     -    Left Justified
  288.     number    Before a precision, the field width.  After a precision,
  289.         the field precision.  Thus %6.5I for 1400 hours gives
  290.         ' 00014'.
  291.  
  292.  
  293. dd - Data copy
  294.  
  295.     usage: dd [ ibs=numeric ] [ obs=numeric ] [ cbs=numeric ] [ bs=numeric ]
  296.           [ if=filename ] [ of=filename ] [ skip=numeric ] [ seek=numeric ]
  297.           [ count=numeric ] [ files=numeric ]
  298.           [ conv=[lcase,ucase,noerror,sync,swab,ascii,ebcdic,ibm] ]
  299.  
  300.     ibs        Input block size
  301.     obs        Output Block size
  302.     cbs        Conversion block size
  303.     bs        Block size
  304.     if        Input filename (default: stdin)
  305.     of        Output filename (default: stdout)
  306.     skip    Number of input records to skip
  307.     seek    Number of output records to seek over
  308.     count    Number of records to transfer
  309.     files    Number of files to process
  310.     conv    Convert data to
  311.         lcase   - lower case
  312.         ucase   - upper cas
  313.         noerror - ignore errors
  314.         sync    -
  315.         swab    - Swap bytes
  316.         ascii    - ASCII
  317.         ebcdic    - EBCDIC
  318.         ibm    - IBM EBCDIC
  319.  
  320.  
  321. df - Display Disk Free space
  322.  
  323.     usage: df [ -bit] drives
  324.  
  325.     -b: Display in BSD format (kbytes)
  326.     -i: Display cluster information
  327.     -t: Display totals
  328.     -c: Display drive information
  329.  
  330.  
  331. diff - Display differences between two text files.
  332.  
  333.     usage: diff [ -bceinT ] [ -o output file ] file1 file2
  334.  
  335.     -b        Remove trailing whitespace (blanks and tabs) and compress all
  336.             other strings of whitespace to a single blank.
  337.     -c        Print some context -- matching lines before and after the
  338.             non-match section.  Mark non-matched sections with "|".
  339.     -e        Output is in an "editor script" format which is compatible
  340.             with the Unix 'ed' editor.
  341.     -i        Ignore lower/upper case distinctions.
  342.     -n        Output is in an RCS style format for use with RCS tools.
  343.     -o outfile    Place output in file "outfile" rather than on stdout.
  344.     -T        Print timings
  345.  
  346.  
  347. dirname - Extract directory name from filename
  348.  
  349.     usage: dirname filename
  350.  
  351.  
  352. du - Display disk usage
  353.  
  354.     usage: du [-arsk] [startdir]
  355.  
  356.     -a: Display all entries instead of just directory entries
  357.     -r: Report errors
  358.     -s: Only display top level values
  359.     -k:    Display Kilobyte usage as well
  360.  
  361.  
  362. expr - evaluate arguments as expression
  363.  
  364.     usage: expr expression..
  365.  
  366.     The supported operators are |, &, =, >, >=, <, <=, !=, +, -, *, /, %
  367.     and : and ().
  368.  
  369.  
  370. fgrep - Search file for string
  371.  
  372.     usage: fgrep [-vxcilnbs] [-e string] [-f file] [string] [files..]
  373.  
  374.     -x:        Report only lines which exactly match the string.
  375.     -v:        All lines but those matching are printed.
  376.     -c:        Only a count of    matching lines is printed.
  377.     -i:        Ignore upper/lower case    distinction during comparisons.
  378.     -l:        Only the names of files    with matching lines are    listed (once),
  379.         separated by new-lines.
  380.     -n:        Each line is preceded by its relative line number in the file.
  381.     -b:        Each line is preceded by the block number on which it was found.
  382.         This is sometimes useful in locating disk block numbers by
  383.         context.
  384.     -s:        The error messages produced for    nonexistent or unreadable files
  385.         are suppressed.
  386.     -e expression
  387.         Same as a simple expression argument, but useful when the
  388.         expression begins with a -.
  389.     -f file    The regular expression list is taken from the file.
  390.  
  391.  
  392. find - Search directory tree for files matching requirements
  393.  
  394.     usage: find path-list predicate-list
  395.        Predicate list: [ -name filename ] [ -perm permissions ]
  396.                [ -type [bcdfpnlsM] ] [ -links number ]
  397.                [ -user username ] [ -group groupname ]
  398.                [ -size number[bkc] [ -inum inode ]
  399.                [ -[acm]time days.HHMMSS ]
  400.                [ -[exec | ok ] command string ; ]
  401.                [ -newer[acm][acm] file ] [ -path path ]
  402.                [ -depth ] [ -print ] [ -mountstop ]
  403.                [ -prune ] [ -only ] [ -follow ]
  404.                [ -msdos ] [ -pmask permissions mask ]
  405.                [ -cpio|ncpio device ] [ -ls ] [ -icase ]
  406.                [ -nogroup ] [ -nouser ] [ -xdev ]
  407.        Operator  list: [ -a -o ( ) ! ]
  408.  
  409.     Predicates
  410.  
  411.         -name filename:        Match this file name.  Shell wild
  412.                     cards can be used.
  413.         -perm permissions        Match Permissions
  414.         -type [bcdfpnlsM]         Match only files of specified type
  415.         -links number        Match number of links
  416.         -user username         Match owner
  417.         -group groupname        Match group
  418.         -size number[bkc]        Match file size
  419.         -inum inode            Match inode number
  420.         -[acm]time days.HHMMSS    Match create/access modification time
  421.         -[exec | ok] command string ;
  422.                     Execute command string
  423.         -newer[acm][acm] file     Compare create/access/modification
  424.                     time with reference file
  425.         -path path            Match full path using wild cards
  426.         -depth             Depth first search
  427.         -print             Print a match
  428.         -mountstop            Do not cross mount points
  429.         -prune             Prune directories
  430.         -only             Only follow directories
  431.         -follow            Follow symbolic links
  432.         -msdos             Output MSDOS format names
  433.         -pmask permissions mask    Test file permissions to see if a
  434.                     any of permissions mask is set.
  435.         -cpio | ncpio device     Write file to stdout in CPIO format
  436.         -ls             Print file information in ls format
  437.         -icase            Ignore case on name match
  438.         -nogroup             Match if file's group name does not
  439.                         exist
  440.         -nouser            Match if file's owner name does not
  441.                     exist
  442.         -xdev            Do not go cross mount points
  443.  
  444.     Predicates can be joined using the following operators
  445.  
  446.        -a    And
  447.        -o    Or
  448.        !    Not
  449.        (    Start subexpression
  450.        )    End subexpression
  451.  
  452.  
  453. fold - Fold long lines to stdout
  454.  
  455.     usage: fold -width files..
  456.  
  457.     -width    Maximum line length (default 80)
  458.  
  459.  
  460. fstat - Print file status information
  461.  
  462.     usage: fstat filename
  463.  
  464.  
  465. grep - Search file for pattern
  466.  
  467.     usage: grep [-vcilnbs] [-e string] [-f file] [string] [files..]
  468.  
  469.     -v:        All lines but those matching are printed.
  470.     -c:        Only a count of    matching lines is printed.
  471.     -i:        Ignore upper/lower case    distinction during comparisons.
  472.     -l:        Only the names of files    with matching lines are    listed (once),
  473.         separated by new-lines.
  474.     -n:        Each line is preceded by its relative line number in the file.
  475.     -b:        Each line is preceded by the block number on which it was found.
  476.         This is sometimes useful in locating disk block numbers by
  477.         context.
  478.     -s:        The error messages produced for    nonexistent or unreadable files
  479.         are suppressed.
  480.     -e expression
  481.         Same as a simple expression argument, but useful when the
  482.         expression begins with a -.
  483.     -f file    The regular expression list is taken from the file.
  484.  
  485.  
  486. head - display file headers
  487.  
  488.     usage: head [-n] [file ...]
  489.  
  490.     -n:        Number of lines to display (n is a number)
  491.  
  492.  
  493. ls - List directory
  494.  
  495.     Note:  Not all the options are meaning full on MSDOS.
  496.  
  497.     usage: ls [-xutsrpqonmligfdcbaACFRS1] [file list]
  498.  
  499.     -A:        List all files
  500.     -F:        Append file type to filename (/ directory, * executable)
  501.     -C:        Use column output
  502.     -R:        Recurse down directory tree
  503.     -S:        Sort on size
  504.     -1:        Output as a single column
  505.     -x:        Output as multiple columns
  506.     -u:        Display access times, not modification times
  507.     -t:        Sort on time
  508.     -s:        Display number of blocks
  509.     -r:        Reverse sort order
  510.     -p:        Append / to directories
  511.     -q:        Display non-printing characters as ?
  512.     -o:        Display file owner
  513.     -n:        Display owner/group as numeric ids
  514.     -m:        Display in columns using , as the separator
  515.     -l:        Long format
  516.     -i:        Display inode
  517.     -g:        Display file group
  518.     -f:        Assume the file is a directory
  519.     -d:        Do not recurse down a directory
  520.     -c:        Display creation times, not modification times
  521.     -b:        Display non-printing characters as \value
  522.     -a:        Suppress files beginning with a dot
  523.  
  524.  
  525. m4 - M4 Macro processor
  526.  
  527.     usage: m4 [-es] [-Tsize] [-Bsize] [-Ssize] [-Hsize] [-Dname[=val]] [-Uname] [files..]
  528.  
  529.     -e:        Operate interactively
  530.     -s:        Enable line sync output
  531.     -T size:    Set token buffer size to size.
  532.     -B size:    Set argument buffer size to size.
  533.     -S size:    Set call stack size to size.
  534.     -H size:    Set hash table size to size.
  535.     -D name=..    Define name value
  536.     -U name    Undefine name
  537.  
  538.  
  539. make - Makefile processor (supports swapping a la shell)
  540.  
  541.     usage: make [-f makefile] [-inpqrst] [macro=val ...] [target(s) ...]
  542.  
  543.     -f name:    Makefile name (default makefile)
  544.     -i:        Ignore exit status
  545.     -n:        Pretend to make
  546.     -p:        Print all macros & targets
  547.     -q:        Question up-to-dateness of target.  Return exit status 1 if not
  548.     -r:        Don't not use inbuilt rules
  549.     -s:        Make silently
  550.     -t:        Touch files instead of making them
  551.     -d:        Debug
  552.     -e:        Override with environment variables
  553.     -k:        Skip tree
  554.  
  555.     Note:  Make sure the rulefile is installed in the same directory as
  556.        make.exe.
  557.  
  558.  
  559. mkdir - Make path
  560.  
  561.     usage: mkdir -p directory
  562.  
  563.     -p:    Make intermediate directories in path
  564.  
  565.  
  566. mv - Move files.
  567.  
  568.     usage: mv [-ipfrRvn] f1 f2
  569.        mv [-ipfrRvn] f1 ... fn d1
  570.        mv [-ipfrRvn] d1 d2
  571.  
  572.     -i:    Ask before copying
  573.     -r: Recurse down directories, copying tree to new location
  574.     -R: Recurse down directories, copying tree to new location
  575.     -v: Verbose
  576.     -n: Show me what you're going to do, without doing it.
  577.     -p: Preserve access times
  578.     -f: Force removal of destination files
  579.  
  580.  
  581. od - octal dump
  582.  
  583.     usage: od [-bcdhox] [file] [ [+] offset [.] [b] ]
  584.  
  585.     -b:        Display bytes in octal
  586.     -c:        Display bytes as characters
  587.     -d:        Display bytes in decimal
  588.     -h:        Display bytes in hexadecimal
  589.     -o:        Display words in octal
  590.     -x:        Display words in hexadecimal
  591.  
  592.     offset    Start offset (in octal) in file
  593.         (b - offset is in blocks)
  594.         (. interprete offset in decimal)
  595.  
  596.  
  597. printarg - Print argumnents to stdout
  598.  
  599.     usage: printarg
  600.  
  601.  
  602. printenv - Print environment to stdout
  603.  
  604.     usage: printenv
  605.  
  606.  
  607. rm - Remove files
  608.  
  609.     usage: rm [ -fir ] file...
  610.  
  611.     -f:    Force removal
  612.     -i: Ask user first
  613.     -r: Recurse down directories (beware the dread rm -rf /*).
  614.  
  615.  
  616. rmdir - Remove directories
  617.  
  618.     usage: rmdir [ -p ] path..
  619.  
  620.     -p:    Remove all directories on path
  621.  
  622.  
  623. setschar - Set switch character
  624.  
  625.     usage: setschar [ character ]
  626.  
  627.     Display or set (character provided) the switch character.
  628.  
  629.  
  630. sleep - Wait for n seconds
  631.  
  632.     usage: sleep seconds
  633.  
  634.  
  635. sort - Sort files
  636.  
  637.     usage: sort [ -cmu ] [ -t separator] [ -y record size] [ -z memory size ]
  638.         [-o output file] [ -T directory ] [ -bdfinrM ]
  639.         [[+StartField.Offset[bdfinrM] [-EndField.Offset]] [file] ...
  640.  
  641.     If any of the following flags can be applied globally or to a particular
  642.     field (appended to the startfield address):
  643.  
  644.     -b:    Skip leading blanks
  645.     -d:    Sort to dictionary order.  Only letters, digits, comma's and points
  646.     are compared.
  647.     -f:    Fold upper case to lower.
  648.     -i:    Ignore chars outside ASCII range (040 - 0176)
  649.     -n:    Sort to numeric value (optional decimal point) implies -b
  650.     -r:    Reverse the sense of comparisons.
  651.     -M:    Month order
  652.  
  653.     I/O control flags are:
  654.  
  655.     -u:        Print uniq lines only once.
  656.     -c:        Check if files are sorted in order.
  657.     -m:        Merge already sorted files.
  658.     -o outfile:    Name of output file. (Can be one of the input files). Default
  659.         is stdout.
  660.     -:        Take stdin as input.
  661.  
  662.     Fields:
  663.  
  664.     -t'x':    Field separating character is 'x'
  665.     +a.b:    Start comparing at field 'a' with offset 'b'. A missing 'b' is
  666.         taken to be 0.
  667.     -a.b:    Stop comparing at field 'a' with offset 'b'. A missing 'b' is
  668.         taken to be 0.  A missing -a.b means the rest of the line.
  669.  
  670.  
  671. split - Split file into n line parts
  672.  
  673.     usage: split [-n] [file [name]].
  674.  
  675.     -number:    Part size in lines (default: 1000)
  676.     file:    The file to split
  677.     name:    The prefix for the parts (default: x).
  678.  
  679.  
  680. strings - Display the strings in files
  681.  
  682.     usage: strings -aopc -min_length files...
  683.  
  684.     -a:            No used
  685.     -o:            Output offset of string
  686.     -p:            Output filename for string
  687.     -c:            No used
  688.     -min_length        The minimum string length
  689.  
  690.  
  691. sym - Display symbolic information from object and library files
  692.  
  693.     usage: sym [ -acegilnpstxzI ] filename
  694.  
  695.     -z:     Zero suppress mode
  696.     -t:     Print comments
  697.     -p:     Print publics
  698.     -e:     Print externals
  699.     -g:     Print groups
  700.     -c:     Print classes
  701.     -s:     Print segments
  702.     -n:     Print name record
  703.     -l:     Sort by address
  704.     -i:     Ignore case on sorting
  705.     -I:     Ignore unknown records
  706.     -x:     Sort by length
  707.     -d:     Debug mode
  708.  
  709.  
  710. tail - Print tail of file
  711.  
  712.     usage: tail [+/-[number][lcbf]] [file]
  713.  
  714.     +/-number    Number of lines (l, default), characters (c), blocks (b) to
  715.         print from the end (-) or start (+) of the file.
  716.     -f        Wait 1 second at EOF and try reading again.
  717.  
  718.  
  719. tee - Pipe fit a pipeline.  Copy stdin to one or more files and standard
  720.       output.
  721.  
  722.     usage: tee [-i] [-a] [files].
  723.  
  724.     -i:    Interrupt turned off.
  725.     -a:    Append to outputfile(s), instead of overwriting them.
  726.  
  727.  
  728. touch - Change a file's timestamp or size
  729.  
  730.     usage: touch [-amc] [-s newsize] [-t mmddhhmm[CC]yy.ss] [-f ref_file] file...
  731.     -a:            Change the access time
  732.     -m:            Change the modification time
  733.     -c:            Change the create time
  734.     -s newsize:        Change the file size to newsize
  735.     -t time:        Use this as the timestamp
  736.     -f ref_file:    Use the reference file (ref_file) for the timestamps.
  737.  
  738.  
  739. tput - Output a termcap string
  740.  
  741.     usage: tput [-Ttype] capname
  742.  
  743.     -Ttype:    Usage terminal name type.  Default is the value of TERM
  744.         environment variable.
  745.     capname:    The termcap capability name for the terminal attribute.
  746.  
  747.  
  748. tr - Translate characters
  749.  
  750.     usage: tr [-cds] string1 string2 files
  751.  
  752.     -c:    Take complement of string1
  753.     -d:    Delete input characters coded string1
  754.     -s: Squeeze multiple output characters of string2 into one character
  755.  
  756.  
  757. uniq - Display unique lines
  758.  
  759.     usage: uniq [-udc] [+n] [-n] [input [output]]
  760.  
  761.  
  762. wc - Count number of words in file
  763.  
  764.     usage: wc [-lwc] [name ...]
  765.  
  766.     -l:    Display only the line count
  767.     -w:    Display only the word count
  768.     -c:    Display only the character count
  769.  
  770.  
  771. which - Display the directory containing a command from the PATH
  772.  
  773.     usage: which [-i] [-a] [--] [<command>]
  774.  
  775.     -i:    Read commands from stdin
  776.     -a: Display all commands found on the PATH
  777.