Core utilities
Core utilities are the basic, fundamental tools of a GNU/Linux system. This article provides an incomplete overview of them, links their documentation and describes useful alternatives. The scope of this article includes, but is not limited to, the GNU coreutils. Most core utilities are traditional Unix tools (see Heirloom) and many were standardized by POSIX but have been developed further to provide more features.
Most command-line interfaces are documented in man pages, utilities by the GNU Project are documented primarily in Info manuals, some shells provide a help command for shell builtin commands. Additionally most utilities print their usage when run with the --help flag.
Essentials
The following table lists some important utilities which Arch Linux users should be familiar with. See also intro(1).
| Package | Utility | Description | Documentation | Alternatives |
|---|---|---|---|---|
| shell built-ins | cd | change directory | #cd alternatives | |
| GNU | ls | list directory | , info | , #ls alternatives |
| cat | concatenate files to stdout | , info | tac(1), bat | |
| mkdir | make directory | , info | ||
| rmdir | remove empty directory | , info | ||
| rm | remove files or directories | , info | shred | |
| cp | copy files or directories | , info | #cp alternatives | |
| mv | move files or directories | , info | ||
| ln | make hard or symbolic links | , info | ||
| chown | change file owner and group | chown(1), info | ||
| chmod | change file permissions | , info | ||
| dd | convert and copy a file | , info | ||
| df | report file system disk space usage | df(1), info | ||
| GNU | tar | tar archiver | , info | archivers |
| GNU | less | terminal pager | terminal pagers | |
| GNU | find | search files or directories | , info, GregsWiki | #find alternatives |
| GNU | diff | compare files line by line | diff(1), info | #diff alternatives |
| GNU | grep | print lines matching a pattern | , info | #grep alternatives |
| GNU | sed | stream editor | , info, one-liners | |
| GNU gawk | awk | pattern scanning and processing language | , info | , |
| dmesg | print or control the kernel ring buffer | dmesg(1) | systemd journal | |
| lsblk | list block devices | |||
| mount | mount a filesystem | |||
| umount | unmount a filesystem | |||
| su | substitute user | sudo, | ||
| kill | terminate a process | , killall(1) | ||
| pgrep | look up processes by name or attributes | |||
| ps | show information about processes | , | ||
| free | display amount of free and used memory | free(1) |
Preventing data loss
, , and shell redirections happily delete or overwrite files without asking. , , and all support the -i flag to prompt the user before every removal / overwrite. Some users like to enable the -i flag by default using aliases. Relying upon these shell options can be dangerous, because you get used to them, resulting in potential data loss when you use another system or user that does not have them. The best way to prevent data loss is to create backups.
Nonessentials
This table lists core utilities that often come in handy.
| Package | Utility | Description | Documentation | Alternatives |
|---|---|---|---|---|
| shell built-ins | alias | define or display aliases | ||
| type | print the type of a command | |||
| time | time a command | |||
| GNU | tee | read stdin and write to stdout and files | , info | |
| mktemp | make a temporary file or directory | , info | ||
| cut | print selected parts of lines | cut(1), info | ||
| tr | translate or delete characters | , info | ||
| od | dump files in octal and other formats | , info | , vim's | |
| sort | sort lines | , info | ||
| uniq | report or omit repeated lines | uniq(1), info | ||
| comm | compare two sorted files line by line | , info | ||
| head | output the first part of files | , info | ||
| tail | output the last part of files, or follow files | , info | ||
| wc | print newline, word and byte count | , info | ||
| GNU | strings | print printable characters in binary files | , info | stringsextAUR |
| GNU | iconv | convert character encodings | ||
| file | guess file type |
The moreutils package provides useful tools like that are missing from the GNU coreutils.
Alternatives
Alternative core utilities are provided by BusyBox, the Heirloom Toolchest, , and ubase-gitAUR.
cat alternatives
cd alternatives
cp alternatives
Using rsync#As cp/mv alternative allows you to resume a failed transfer, to show the transfer status, to skip already existing files and to make sure of the destination files integrity using checksums.
ls alternatives
find alternatives
- fuzzy-find — Fuzzy completion for finding files.
For graphical file searchers, see List of applications/Utilities#File searching.
diff alternatives
While does not provide a word-wise diff, several other programs do:
- git diff can do a word diff with , using it can also be used for files outside of Git working trees.
- git-delta — A syntax-highlighting pager for git, diff, and grep output.
See also List of applications/Utilities#Comparison, diff, merge.
grep alternatives
- ripgrep-all — Search in plain text and also in PDFs, E-Books, Office documents, zip, tar.gz.
Code searchers
The following three tools aim to replace grep for code search. They do recursive search by default, skip binary files and respect .