source: appendixa/coreutils-desc.xml@ dec4b0a

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 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 dec4b0a was 04a3351, checked in by Alex Gronenwoud <alex@…>, 21 years ago

Changing the style of the 'Content' subsections.

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

  • Property mode set to 100644
File size: 9.2 KB
Line 
1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
2
3<sect2><title>Short descriptions</title>
4
5<para><command>basename</command> strips any path and a given suffix from
6the given file name.</para>
7
8<para><command>cat</command> concatenates files to standard output.</para>
9
10<para><command>chgrp</command> changes the group ownership of each given
11file to the given group. The group can be either given a a name or a numeric
12ID.</para>
13
14<para><command>chmod</command> changes the permissions of each given file
15to the given mode. The mode can be either a symbolic representation of the
16changes to make, or an octal number representing the new permissions.</para>
17
18<para><command>chown</command> changes the user and/or group ownership of
19each given file to the given user:group pair.</para>
20
21<para><command>chroot</command> runs a given command with the specified
22directory as the <filename>/</filename> directory. The given command can be an
23interactive shell. On most systems only <emphasis>root</emphasis> can do
24this.</para>
25
26<para><command>cksum</command> prints the CRC checksum and the byte
27counts of each specified file.</para>
28
29<para><command>comm</command> compares two sorted files, outputting in
30three columns the lines that are unique, and the lines that are common.</para>
31
32<para><command>cp</command> copies files.</para>
33
34<para><command>csplit</command> splits a given file into several new files,
35separating them according to given patterns or line numbers, and outputting
36the byte count of each new file.</para>
37
38<para><command>cut</command> prints parts of lines, selecting the parts
39according to given fields or positions.</para>
40
41<para><command>date</command> displays the current time in the given
42format, or sets the system date.</para>
43
44<para><command>dd</command> copies a file using the given blocksize and
45count, while optionally performing conversions on it.</para>
46
47<para><command>df</command> reports the amount of disk space available
48(and used) on all mounted filesystems, or only on the filesystems holding the
49given files.</para>
50
51<para><command>dir</command> is the same as ls.</para>
52
53<para><command>dircolors</command> outputs commands to set the LS_COLOR
54environment variable, to change the color scheme used by ls.</para>
55
56<para><command>dirname</command> strips the non-directory suffix from
57a given file name.</para>
58
59<para><command>du</command> reports the amount of disk space used by the
60current directory, or by each of the given directories including all their
61subdirectories, or by each of the given files.</para>
62
63<para><command>echo</command> displays the given strings.</para>
64
65<para><command>env</command> runs a command in a modified environment.</para>
66
67<para><command>expand</command> converts tabs to spaces.</para>
68
69<para><command>expr</command> evaluates expressions.</para>
70
71<para><command>factor</command> prints the prime factors of all specified
72integer numbers.</para>
73
74<para><command>false</command> does nothing, unsuccessfully. It always
75exits with a status code indicating failure.</para>
76
77<para><command>fmt</command> reformats the paragraphs in the given files.</para>
78
79<para><command>fold</command> wraps the lines in the given files.</para>
80
81<para><command>groups</command> reports a user's group memberships.</para>
82
83<para><command>head</command> prints the first ten lines (or the given
84number of lines) of each given file.</para>
85
86<para><command>hostid</command> reports the numeric identifier
87(in hexadecimal) of the host.</para>
88
89<para><command>hostname</command> reports or sets the name of the
90host.</para>
91
92<para><command>id</command> reports the effective user ID, group ID, and
93group memberships of the current user, or of a given user.</para>
94
95<para><command>install</command> copies files while setting their
96permission modes and, if possible, their owner and group.</para>
97
98<para><command>join</command> joins from two files the lines that have
99identical join fields.</para>
100
101<para><command>kill</command> terminates the given process.</para>
102
103<para><command>link</command> creates a hard link with the given name
104to the given file.</para>
105
106<para><command>ln</command> makes hard links or soft links between files.</para>
107
108<para><command>logname</command> reports the current user's login name.</para>
109
110<para><command>ls</command> lists the contents of each given directory.
111By default it orders the files and subdirectories alphabetically.</para>
112
113<para><command>md5sum</command> reports or checks MD5 checksums.</para>
114
115<para><command>mkdir</command> creates directories with the given names.</para>
116
117<para><command>mkfifo</command> creates FIFOs with the given names.</para>
118
119<para><command>mknod</command> creates device nodes with the given names.
120A device node is a character special file, or a block special file, or a FIFO.</para>
121
122<para><command>mv</command> moves or renames files or directories.</para>
123
124<para><command>nice</command> runs a program with modified scheduling priority.</para>
125
126<para><command>nl</command> numbers the lines from the given files.</para>
127
128<para><command>nohup</command> runs a command immune to hangups, with
129output redirected to a log file.</para>
130
131<para><command>od</command> dumps files in octal and other formats.</para>
132
133<para><command>paste</command> merges the given files, joining
134sequentially corresponding lines side by side, separated by TABs.</para>
135
136<para><command>pathchk</command> checks whether file names are valid
137or portable.</para>
138
139<para><command>pinky</command> is a lightweight finger. It reports
140some information about the given users.</para>
141
142<para><command>pr</command> paginates and columnates files for printing.</para>
143
144<para><command>printenv</command> prints the environment.</para>
145
146<para><command>printf</command> prints the given arguments according to the
147given format -- much like the C printf function.</para>
148
149<para><command>ptx</command> produces from the contents of the given files
150a permuted index, with each keyword in its context.</para>
151
152<para><command>pwd</command> reports the name of the current directory.</para>
153
154<para><command>readlink</command> reports the value of the given symbolic
155link.</para>
156
157<para><command>rm</command> removes files or directories.</para>
158
159<para><command>rmdir</command> removes directories, if they are empty.</para>
160
161<para><command>seq</command> prints a sequence of numbers, within a given
162range and with a given increment.</para>
163
164<para><command>sha1sum</command> prints or checks 160-bit SHA1
165checksums.</para>
166
167<para><command>shred</command> overwrites the given files repeatedly with
168strange patterns, to make it real hard to recover the data.</para>
169
170<para><command>sleep</command> pauses for the given amount of time.</para>
171
172<para><command>sort</command> sorts the lines from the given files.</para>
173
174<para><command>split</command> splits the given file into pieces, by size
175or by number of lines.</para>
176
177<para><command>stty</command> sets or reports terminal line settings.</para>
178
179<para><command>su</command> runs a shell with substitute user and group IDs.</para>
180
181<para><command>sum</command> prints checksum and block counts for each
182given file.</para>
183
184<para><command>sync</command> flushes filesystem buffers. It forces
185changed blocks to disk and updates the super block.</para>
186
187<para><command>tac</command> concatenates the given files in reverse.</para>
188
189<para><command>tail</command> prints the last ten lines (or the given
190number of lines) of each given file.</para>
191
192<para><command>tee</command> reads from standard input while writing both
193to standard output and to the given files.</para>
194
195<para><command>test</command> compares values and checks file types.</para>
196
197<para><command>touch</command> changes file timestamps, setting the access
198and modification times of the given files to the current time. Files that do
199not exist are created with zero length.</para>
200
201<para><command>tr</command> translates, squeezes, and deletes the given
202characters from standard input.</para>
203
204<para><command>true</command> does nothing, successfully. It always exits
205with a status code indicating success.</para>
206
207<para><command>tsort</command> performs a topological sort. It writes a
208totally ordered list according to the partial ordering in a given file.</para>
209
210<para><command>tty</command> reports the file name of the terminal
211connected to standard input.</para>
212
213<para><command>uname</command> reports system information.</para>
214
215<para><command>unexpand</command> converts spaces to tabs.</para>
216
217<para><command>uniq</command> discards all but one of successive
218identical lines.</para>
219
220<para><command>unlink</command> removes the given file.</para>
221
222<para><command>uptime</command> reports how long the system has been
223running, how many users are logged on, and the system load averages.</para>
224
225<para><command>users</command> reports the names of the users currently
226logged on.</para>
227
228<para><command>vdir</command> is the same as ls -l.</para>
229
230<para><command>wc</command> reports the number of lines, words, and bytes
231for each given file, and a total line when more than one file is given.</para>
232
233<para><command>who</command> reports who is logged on.</para>
234
235<para><command>whoami</command> reports the user name associated with the
236current effective user ID.</para>
237
238<para><command>yes</command> outputs 'y' or a given string repeatedly,
239until killed.</para>
240
241</sect2>
242
Note: See TracBrowser for help on using the repository browser.