rev |
line source |
al@19216
|
1 Coreutils: Core GNU (file, text, shell) utilities.
|
al@19216
|
2
|
al@19216
|
3 * [ exit with the status determined by expression
|
al@19216
|
4 * base32: base32 encode/decode data and print to standard output
|
al@19216
|
5 * base64: base64 encode/decode data and print to standard output
|
al@19216
|
6 * basename: strip directory and suffix from filenames
|
al@19216
|
7 * cat: concatenate files and print on the standard output
|
al@19216
|
8 * chcon: change file SELinux security context
|
al@19216
|
9 * chgrp: change group ownership
|
al@19216
|
10 * chmod: change file mode bits
|
al@19216
|
11 * chown: change file owner and group
|
al@19216
|
12 * chroot: run command or interactive shell with special root directory
|
al@19216
|
13 * cksum: checksum and count the bytes in a file
|
al@19216
|
14 * comm: compare two sorted files line by line
|
al@19216
|
15 * cp: copy files and directories
|
al@19216
|
16 * csplit: split a file into sections determined by context lines
|
al@19216
|
17 * cut: remove sections from each line of files
|
al@19216
|
18 * date: print or set the system date and time
|
al@19216
|
19 * dd: convert and copy a file
|
al@19216
|
20 * df: report file system disk space usage
|
al@19216
|
21 * dir: list directory contents
|
al@19216
|
22 * dircolors: color setup for ls
|
al@19216
|
23 * dirname: strip last component from file name
|
al@19216
|
24 * du: estimate file space usage
|
al@19216
|
25 * echo: display a line of text
|
al@19216
|
26 * env: run a program in a modified environment
|
al@19216
|
27 * expand: convert tabs to spaces
|
al@19216
|
28 * expr: evaluate expressions
|
al@19216
|
29 * factor: factor numbers
|
al@19216
|
30 * false: do nothing, unsuccessfully
|
al@19216
|
31 * fmt: simple optimal text formatter
|
al@19216
|
32 * fold: wrap each input line to fit in specified width
|
al@19216
|
33 * groups: print the groups a user is in
|
al@19216
|
34 * head: output the first part of files
|
al@19216
|
35 * hostid: print the numeric identifier for the current host
|
al@19216
|
36 * id: print real and effective user and group IDs
|
al@19216
|
37 * install: copy files and set attributes
|
al@19216
|
38 * join: join lines of two files on a common field
|
al@19216
|
39 * kill: send signals to processes, or list signals
|
al@19216
|
40 * link: call the link function to create a link to a file
|
al@19216
|
41 * ln: make links between files
|
al@19216
|
42 * logname: print user's login name
|
al@19216
|
43 * ls: list directory contents
|
al@19216
|
44 * md5sum: compute and check MD5 message digest
|
al@19216
|
45 * mkdir: make directories
|
al@19216
|
46 * mkfifo: make FIFOs (named pipes)
|
al@19216
|
47 * mknod: make block or character special files
|
al@19216
|
48 * mktemp: create a temporary file or directory
|
al@19216
|
49 * mv: move (rename) files
|
al@19216
|
50 * nice: run a program with modified scheduling priority
|
al@19216
|
51 * nl: number lines of files
|
al@19216
|
52 * nohup: run a command immune to hangups, with output to a non-tty
|
al@19216
|
53 * nproc: print the number of processing units available
|
al@19216
|
54 * numfmt: convert numbers from/to human-readable strings
|
al@19216
|
55 * od: dump files in octal and other formats
|
al@19216
|
56 * paste: merge lines of files
|
al@19216
|
57 * pathchk: check whether file names are valid or portable
|
al@19216
|
58 * pinky: lightweight finger
|
al@19216
|
59 * pr: convert text files for printing
|
al@19216
|
60 * printenv: print all or part of environment
|
al@19216
|
61 * printf: format and print data
|
al@19216
|
62 * ptx: produce a permuted index of file contents
|
al@19216
|
63 * pwd: print name of current/working directory
|
al@19216
|
64 * readlink: print resolved symbolic links or canonical file names
|
al@19216
|
65 * realpath: print the resolved path
|
al@19216
|
66 * rm: remove files or directories
|
al@19216
|
67 * rmdir: remove empty directories
|
al@19216
|
68 * runcon: run command with specified SELinux security context
|
al@19216
|
69 * seq: print a sequence of numbers
|
al@19216
|
70 * sha1sum: compute and check SHA1 message digest
|
al@19216
|
71 * sha224sum: compute and check SHA224 message digest
|
al@19216
|
72 * sha256sum: compute and check SHA256 message digest
|
al@19216
|
73 * sha384sum: compute and check SHA384 message digest
|
al@19216
|
74 * sha512sum: compute and check SHA512 message digest
|
al@19216
|
75 * shred: overwrite a file to hide its contents, and optionally delete it
|
al@19216
|
76 * shuf: generate random permutations
|
al@19216
|
77 * sleep: delay for a specified amount of time
|
al@19216
|
78 * sort: sort lines of text files
|
al@19216
|
79 * split: split a file into pieces
|
al@19216
|
80 * stat: display file or file system status
|
al@19216
|
81 * stdbuf: run command with modified buffering operations for its standard
|
al@19216
|
82 streams
|
al@19216
|
83 * stty: change and print terminal line settings
|
al@19216
|
84 * sum: checksum and count the blocks in a file
|
al@19216
|
85 * sync: synchronize cached writes to persistent storage
|
al@19216
|
86 * tac: concatenate and print files in reverse
|
al@19216
|
87 * tail: output the last part of files
|
al@19216
|
88 * tee: read from standard input and write to standard output and files
|
al@19216
|
89 * test: check file types and compare values
|
al@19216
|
90 * timeout: run a command with a time limit
|
al@19216
|
91 * touch: change file timestamps
|
al@19216
|
92 * tr: translate or delete characters
|
al@19216
|
93 * true: do nothing, successfully
|
al@19216
|
94 * truncate: shrink or extend the size of a file to the specified size
|
al@19216
|
95 * tsort: perform topological sort
|
al@19216
|
96 * tty: print the file name of the terminal connected to standard input
|
al@19216
|
97 * uname: print system information
|
al@19216
|
98 * unexpand: convert spaces to tabs
|
al@19216
|
99 * uniq: report or omit repeated lines
|
al@19216
|
100 * unlink: call the unlink function to remove the specified file
|
al@19216
|
101 * uptime: tell how long the system has been running
|
al@19216
|
102 * users: print the user names of users currently logged in to the current
|
al@19216
|
103 host
|
al@19216
|
104 * vdir: list directory contents
|
al@19216
|
105 * wc: print newline, word, and byte counts for each file
|
al@19216
|
106 * who: show who is logged on
|
al@19216
|
107 * whoami: print effective user ID
|
al@19216
|
108 * yes: output a string repeatedly until killed
|