source: appendixa/fileutils-desc.xml@ bdadd38

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 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 bdadd38 was ab28d5f, checked in by Gerard Beekmans <gerard@…>, 21 years ago

typo fix inherited from bad first glibc copy

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

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
2
3<sect2><title>Descriptions</title>
4
5<para>Last checked against version &fileutils-contversion;.</para>
6
7<sect3><title>Program file descriptions</title>
8
9<sect4><title>chgrp</title>
10<para>chgrp changes the group ownership of each given file to the named group,
11which can be either a group name or a numeric group ID.</para></sect4>
12
13<sect4><title>chmod</title>
14<para>chmod changes the permissions of each given file according to mode, which
15can be either a symbolic representation of changes to make or an octal
16number representing the bit pattern for the new permissions.</para></sect4>
17
18<sect4><title>chown</title>
19<para>chown changes the user and/or group ownership of each
20given file.</para></sect4>
21
22<sect4><title>cp</title>
23<para>cp copies files from one place to another.</para></sect4>
24
25<sect4><title>dd</title>
26<para>dd copies a file (from the standard input to the standard output, by
27default) with a user-selectable blocksize, while optionally performing
28conversions on it.</para></sect4>
29
30<sect4><title>df</title>
31<para>df displays the amount of disk space available on the filesystem
32containing each file name argument. If no file name is given, the space
33available on all currently mounted filesystems is shown.</para></sect4>
34
35<sect4><title>dir, ls and vdir</title>
36<para>dir and vdir are versions of ls with different default output formats.
37These programs list each given file or directory name. Directory contents
38are sorted alphabetically. For ls, files are, by default, listed in columns
39sorted vertically if the standard output is a terminal; otherwise they
40are listed one per line. For dir, files are, by default, listed in columns
41sorted vertically. For vdir, files are, by default, listed in
42long format.</para></sect4>
43
44<sect4><title>dircolors</title>
45<para>dircolors outputs commands to set the LS_COLOR environment variable.
46The LS_COLOR variable is use to change the default color scheme used by
47ls and related utilities.</para></sect4>
48
49<sect4><title>du</title>
50<para>du displays the amount of disk space used by each file or directory
51listed on the command-line and by each of their subdirectories.</para></sect4>
52
53<sect4><title>install</title>
54<para>install copies files and sets their permission modes and, if possible,
55their owner and group.</para></sect4>
56
57<sect4><title>ln</title>
58<para>ln makes hard or soft (symbolic) links between files.</para></sect4>
59
60<sect4><title>mkdir</title>
61<para>mkdir creates directories with a given name.</para></sect4>
62
63<sect4><title>mkfifo</title>
64<para>mkfifo creates a FIFO with each given name.</para></sect4>
65
66<sect4><title>mknod</title>
67<para>mknod creates a FIFO, character special file or block special file
68with the given file name.</para></sect4>
69
70<sect4><title>mv</title>
71<para>mv moves files from one directory to another or renames files, depending
72on the arguments given to mv.</para></sect4>
73
74<sect4><title>rm</title>
75<para>rm removes files or directories.</para></sect4>
76
77<sect4><title>rmdir</title>
78<para>rmdir removes directories, if they are empty.</para></sect4>
79
80<sect4><title>shred</title>
81<para>shred deletes a file securely, overwriting it first so that its
82contents can't be recovered.</para></sect4>
83
84<sect4><title>sync</title>
85<para>sync forces changed blocks to disk and updates the
86super block.</para></sect4>
87
88<sect4><title>touch</title>
89<para>touch changes the access and modification times of each given file to the
90current time. Files that do not exist are created empty.</para></sect4>
91
92</sect3>
93
94</sect2>
95
Note: See TracBrowser for help on using the repository browser.