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).

PackageUtilityDescriptionDocumentationAlternatives
shell built-inscdchange directory#cd alternatives
GNU lslist directory, info, #ls alternatives
catconcatenate files to stdout, infotac(1), bat
mkdirmake directory, info
rmdirremove empty directory, info
rmremove files or directories, infoshred
cpcopy files or directories, info#cp alternatives
mvmove files or directories, info
lnmake hard or symbolic links, info
chownchange file owner and groupchown(1), info
chmodchange file permissions, info
ddconvert and copy a file, info
dfreport file system disk space usagedf(1), info
GNU tartar archiver, infoarchivers
GNU lessterminal pagerterminal pagers
GNU findsearch files or directories, info, GregsWiki#find alternatives
GNU diffcompare files line by linediff(1), info#diff alternatives
GNU grepprint lines matching a pattern, info#grep alternatives
GNU sedstream editor, info, one-liners
GNU gawkawkpattern scanning and processing language, info,
dmesgprint or control the kernel ring bufferdmesg(1)systemd journal
lsblklist block devices
mountmount a filesystem
umountunmount a filesystem
susubstitute usersudo,
killterminate a process, killall(1)
pgreplook up processes by name or attributes
psshow information about processes,
freedisplay amount of free and used memoryfree(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.

PackageUtilityDescriptionDocumentationAlternatives
shell built-ins aliasdefine or display aliases
typeprint the type of a command
timetime a command
GNU teeread stdin and write to stdout and files, info
mktempmake a temporary file or directory, info
cutprint selected parts of linescut(1), info
trtranslate or delete characters, info
oddump files in octal and other formats, info, vim's
sortsort lines, info
uniqreport or omit repeated linesuniq(1), info
commcompare two sorted files line by line, info
headoutput the first part of files, info
tailoutput the last part of files, or follow files, info
wcprint newline, word and byte count, info
GNU stringsprint printable characters in binary files, infostringsextAUR
GNU iconvconvert character encodings
fileguess 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.
      https://github.com/silentbicycle/ff || ff-gitAUR

      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.
      https://dandavison.github.io/delta/ || git-delta

      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.
      https://github.com/phiresky/ripgrep-all || ripgrep-all

      Code searchers

      The following three tools aim to replace grep for code search. They do recursive search by default, skip binary files and respect .

      Interactive filters

      • fzf General-purpose command-line fuzzy finder, powered by find by default.
      https://github.com/junegunn/fzf || fzf

      See also

      This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.