Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 908 Bytes

README.md

File metadata and controls

14 lines (14 loc) · 908 Bytes
/*----------------------------------------------------------------------*\
 | Program to transpose a tab-delimited text file.                       |
 |                                                                       |
 | Usage: transpos [-h n] [-d c] input_file                              |
 | Options:   -h n  means there are n header lines, which are copied     |
 |                    as is to the output file.                          |
 |            -d c  means the delimiter is c rather than tab.            |
 | Input: a tab-delimited text file, named on the command line.          |
 | Output: a tab-delimited text file, sent to stdout.                    |
 |                                                                       |
 | Peter N. Schweitzer (U.S. Geological Survey, Reston, VA 20192)        |
\*----------------------------------------------------------------------*/