source: appendixa/textutils-desc.xml@ 0ee1f7b

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v3_2 v3_3 v4_0 v4_1 v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 0ee1f7b was 53ad30a, checked in by Mark Hymers <markh@…>, 23 years ago

[Bug 190] Put descs in alphabetical order

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1249 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<sect2>
2<title>Contents</title>
3
4<para>The Textutils package contains the cat, cksum, comm, csplit, cut, expand,
5fmt, fold, head, join, md5sum, nl, od, paste, pr, ptx, sort, split, sum,
6tac, tail, tr, tsort, unexpand, uniq and wc programs.</para>
7
8</sect2>
9
10<sect2>
11<title>Description</title>
12
13<sect3><title>cat</title>
14<para>cat concatenates file(s) or standard input to
15standard output.</para></sect3>
16
17<sect3><title>cksum</title>
18<para>cksum prints CRC checksum and byte counts of each specified
19file.</para></sect3>
20
21<sect3><title>comm</title>
22<para>comm compares two sorted files line by line.</para></sect3>
23
24<sect3><title>csplit</title>
25<para>csplit outputs pieces of a file separated by (a) pattern(s) to files
26xx01, xx02, ..., and outputs byte counts of each piece to standard
27output.</para></sect3>
28
29<sect3><title>cut</title>
30<para>cut prints selected parts of lines from specified files to standard
31output.</para></sect3>
32
33<sect3><title>expand</title>
34<para>expand converts tabs in files to spaces, writing to standard
35output.</para></sect3>
36
37<sect3><title>fmt</title>
38<para>fmt reformats each paragraph in the specified file(s), writing to
39standard output.</para></sect3>
40
41<sect3><title>fold</title>
42<para>fold wraps input lines in each specified file (standard input by default),
43writing to standard output.</para></sect3>
44
45<sect3><title>head</title>
46<para>Print first xx (10 by default) lines of each specified file to standard
47output.</para></sect3>
48
49<sect3><title>join</title>
50<para>join joins lines of two files on a common field.</para></sect3>
51
52<sect3><title>md5sum</title>
53<para>md5sum prints or checks MD5 checksums.</para></sect3>
54
55<sect3><title>nl</title>
56<para>nl writes each specified file to standard output, with line numbers
57added.</para></sect3>
58
59<sect3><title>od</title>
60<para>od writes an unambiguous representation, octal bytes by default, of a
61specified file to standard output.</para></sect3>
62
63<sect3><title>paste</title>
64<para>paste writes lines consisting of the sequentially corresponding
65lines from each specified file, separated by TABs,
66to standard output.</para></sect3>
67
68<sect3><title>pr</title>
69<para>pr paginates or columnates files for printing.</para></sect3>
70
71<sect3><title>ptx</title>
72<para>ptx produces a permuted index of file contents.</para></sect3>
73
74<sect3><title>sort</title>
75<para>sort writes sorted concatenation of files to standard
76output.</para></sect3>
77
78<sect3><title>split</title>
79<para>split outputs fixed-size pieces of an input file to
80PREFIXaa, PREFIXab, ...</para></sect3>
81
82<sect3><title>sum</title>
83<para>sum prints checksum and block counts for each specified
84file.</para></sect3>
85
86<sect3><title>tac</title>
87<para>tac writes each specified file to standard output, last line
88first.</para></sect3>
89
90<sect3><title>tail</title>
91<para>tail print the last xx (10 by default) lines of each specified file to
92standard output.</para></sect3>
93
94<sect3><title>tr</title>
95<para>tr translates, squeezes, and/or deletes characters from standard
96input, writing to standard output.</para></sect3>
97
98<sect3><title>tsort</title>
99<para>tsort writes totally ordered lists consistent with the partial ordering
100in specified files.</para></sect3>
101
102<sect3><title>unexpand</title>
103<para>unexpand converts spaces in each file to tabs, writing to standard
104output.</para></sect3>
105
106<sect3><title>uniq</title>
107<para>Uniq removes duplicate lines from a sorted file.</para></sect3>
108
109<sect3><title>wc</title>
110<para>wc prints line, word, and byte counts for each specified file, and a
111total line if more than one file is specified.</para></sect3>
112
113</sect2>
Note: See TracBrowser for help on using the repository browser.