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 Core Utilities. Most core utilities are traditional Unix tools 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 directorycd(1p)#cd alternatives
GNU coreutils lslist directoryls(1), infotree, #ls alternatives
catconcatenate files to stdoutcat(1), infotac(1), #cat alternatives
mkdirmake directorymkdir(1), info
rmdirremove empty directoryrmdir(1), info
rmremove files or directoriesrm(1), infoshred unlink(1)
cpcopy files or directoriescp(1), info#cp alternatives
mvmove files or directoriesmv(1), info
lnmake hard or symbolic linksln(1), infosln(8) (soname recovery)
chownchange file owner and groupchown(1), infochgrp(1)
chmodchange file permissionschmod(1), info
ddconvert and copy a filedd(1), info#dd alternatives
dfreport file system disk space usagedf(1), info#df alternatives
duestimate disk space used by files and directoriesdu(1), info#du alternatives
GNU tartartar archivertar(1), infoarchivers
GNU lesslessterminal pagerless(1)terminal pagers
GNU findutilsfindsearch files or directoriesfind(1), info, GregsWiki#find alternatives
GNU diffutilsdiffcompare files line by linediff(1), info#diff alternatives
GNU grepgrepprint lines matching a patterngrep(1), info#grep alternatives
GNU sedsedstream editorsed(1), info, one-linerssad, sd
GNU AWK (gawk)AWKpattern scanning and processing languagegawk(1), infoAWK#Alternative implementations
util-linux dmesgprint or control the kernel ring bufferdmesg(1)systemd journal
lsblklist block deviceslsblk(8)
mountmount a filesystemmount(8)
umountunmount a filesystemumount(8)
susubstitute usersu(1)sudo, doas
killterminate a processkill(1)pkill(1), killall(1)
procps-ng pgreplook up processes by name or attributespgrep(1)pidof(1)
psshow information about processesps(1)top(1), system monitors
freedisplay amount of free and used memoryfree(1)

Preventing data loss

rm, mv, cp and shell redirections happily delete or overwrite files without asking. rm, mv, and cp 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 aliasesalias(1p)
typeprint the type of a commandtype(1p)command(1p), whereis(1), which(1)
timetime a commandtime(1p)
GNU coreutils teeread stdin and write to stdout and filestee(1), infopee(1)
mktempmake a temporary file or directorymktemp(1), info
mknodcreate named pipe or device nodemknod(1), mkfifo(1), info
truncateshrink or extend the size of a filetruncate(1), infofallocate(1)
basencencoding input and output itbasenc(1), base64(1), info
cutprint selected parts of linescut(1), infocolrm(1), hck, choose
trtranslate or delete characterstr(1), infouconv(1)
oddump files in octal and other formatsod(1), infohexdump(1), vim's xxd(1)
sortsort linessort(1), info
uniqreport or omit repeated linesuniq(1), infoanewer, runiqAUR, huniq-gitAUR
commcompare two sorted files line by linecomm(1), infozetAUR
headoutput the first part of fileshead(1), info
joinjoin lines of two inputs on a common fieldjoin(1), infocombine(1) zetAUR
md5sumcalculate cryptography hash functions of inputs and outputsha256sum(1), sha512sum(1), infoshasum(1), rhash(1)
tailoutput the last part of files, or follow filestail(1), info
wcprint newline, word and byte countwc(1), info
GNU binutilsstringsprint printable characters in binary filesstrings(1), infostringsextAUR
util-linuxcolumncolumnate file, optionally pretty-printing in table with gridcolumn(1)paste(1), csviewAUR
GNU findutilsxargscombine or template arguments from stdin to invoke external commandxargs(1)parallel(1) (parallel_alternatives(7))
GNU glibciconvconvert character encodingsiconv(1)recode, uconv(1)
GNU sharutilsuudecodeencode file into email friendly textuuencode(1), uudecode(1), infouudeview(1)
filefileguess file typefile(1)

The moreutils package provides useful tools like sponge(1) that are missing from the GNU coreutils.

Alternatives

Alternative core utilities are provided by the following packages:

  • BusyBox Utilities for rescue and embedded systems.
https://busybox.net || busybox
  • Toybox An all-in-one Linux command line.
https://landley.net/toybox || toyboxAUR
  • uutils Cross-platform Rust rewrite of the GNU coreutils.
https://github.com/uutils/coreutils || uutils-coreutils
  • Heirloom Toolchest Traditional implementations of standard Unix utilities.
https://heirloom.sourceforge.net || heirloom-shAUR, heirloom-doctoolsAUR
  • 9base A port of various original Plan9 tools to unix.
https://tools.suckless.org/9base || 9base
  • sbase A suckless variant of the *nix core utilities.
https://core.suckless.org/sbase || sbase-gitAUR
  • ubase An extension of the sbase utilities.
https://core.suckless.org/ubase || ubase-gitAUR

cat alternatives

  • bat A cat clone with syntax highlighting and Git integration.
https://github.com/sharkdp/bat || bat

cd alternatives

  • zoxide A smart cd command that learns your habits, allowing you to navigate anywhere in just a few keystrokes.
https://github.com/ajeetdsouza/zoxide || zoxide
  • autojump A faster way to navigate your filesystem from the command line.
https://github.com/wting/autojump || autojumpAUR

See also Bash#Auto "cd" when entering just a path and Zsh#Remembering recent directories.

date alternatives

  • dateutils Nifty command line date and time utilities; fast date calculations and conversion in the shell.
https://www.fresse.org/dateutils/ || dateutils
  • pdd Tiny datetime diff calculator.
https://github.com/jarun/pdd || pddAUR

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

  • broot A new way to see and navigate directory trees.
https://github.com/Canop/broot || broot
  • clifm A file manager that can list files like ls(1) would (plus icons and RGB colors support).
https://github.com/leo-arch/clifm/wiki/Advanced#files-lister-ls-mode || clifmAUR
  • eza Another ls replacement with color support, tree view, git integration and other features. Based on exa, which is no longer supported.
https://github.com/eza-community/eza || eza
  • lsd Modern ls with a lot of pretty colors and awesome icons.
https://github.com/Peltoche/lsd || lsd

find alternatives

  • fd Simple, fast and user-friendly alternative to find. Ignores hidden and .gitignore'd files by default.
https://github.com/sharkdp/fd || fd
  • fuzzy-find Fuzzy completion for finding files.
https://github.com/silentbicycle/ff || ff-gitAUR
https://plocate.sesse.net/ || plocate
  • rawhide find files using pretty C expressions.
https://raf.org/rawhide/ || rawhideAUR

For graphical file searchers, see List of applications/Utilities#File searching.

diff alternatives

While diffutils does not provide a word-wise diff, several other programs do:

  • git diff can do a word diff with --color-words, using --no-index it can also be used for files outside of Git working trees.
  • cwdiff A GNU wdiff wrapper that colorizes the output.
https://github.com/junghans/cwdiff || cwdiffAUR
  • git-delta A syntax-highlighting pager for git, diff, and grep output.
https://dandavison.github.io/delta/ || git-delta
  • dwdiff A word diff front-end for the diff program; supports colors.
https://os.ghalkes.nl/dwdiff.html || dwdiffAUR
  • icdiff A colorized diff tool written in Python. "Improved color diff" is meant to supplement normal diff use.
https://github.com/jeffkaufman/icdiff || icdiffAUR
  • wdiff A wordwise implementation of GNU diff; does not support colors.
https://www.gnu.org/software/wdiff/ || wdiff

See also List of applications/Utilities#Comparison, diff, merge.

grep alternatives

  • mgrep A multiline grep.
https://sourceforge.net/projects/multiline-grep/ || mgrepAUR
  • pdfgrep A tool to search text in PDF files.
https://pdfgrep.org/ || pdfgrep
  • 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

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

  • ack A Perl-based grep replacement, aimed at programmers with large trees of heterogeneous source code.
https://beyondgrep.com/ || ack
  • ripgrep (rg) A search tool that combines the usability of ag with the raw speed of grep.
https://github.com/BurntSushi/ripgrep || ripgrep
  • The Silver Searcher (ag) Code searching tool similar to ack, but faster.
https://github.com/ggreer/the_silver_searcher || the_silver_searcher
  • ugrep (ug) Ultrafast grep with interactive user interface, fuzzy search, boolean queries, hexdumps and more.
https://github.com/Genivia/ugrep || ugrep

See also: cscope.

Interactive filters

  • fzf General-purpose command-line fuzzy finder, powered by find by default.
https://github.com/junegunn/fzf || fzf
  • fzy A fast, simple fuzzy text selector with an advanced scoring algorithm.
https://github.com/jhawthorn/fzy || fzy
  • peco Simplistic interactive filtering tool.
https://github.com/peco/peco || peco
  • percol Adds flavor of interactive filtering to the traditional pipe concept of the UNIX shell.
https://github.com/mooz/percol || percolAUR
  • skim Fuzzy finder written in Rust, similar to fzf.
https://github.com/lotabout/skim || skim

dd alternatives

See also: dd and ddrescue

Alternative dd implementations

This subsection lists dd implementations whose interface and default behaviour is mostly compliant with the POSIX specification of dd(1p).

  • ddpt A portable rewrite of sg_dd(8) by the SCSI subsystem maintainer of the Linux kernel, with optional but very specialised hardware I/O (SCSI command sets) support, plus many other features.
https://sg.danny.cz/sg/ddpt.html || ddptAUR
  • sdd A dd implementation portable across UNIX environments by Joerg Schilling, that can checksum the copied data and retry reading bad blocks.
https://schilytools.sourceforge.net/ || schily-tools-sddAUR
Spin-offs of GNU dd

The GNU implementation of dd found in coreutils also conforms to POSIX. This subsection lists its forks.

  • dcfldd feature-enhanced fork of GNU dd for forensics and security scenarios, includes on-the-fly hashing capability, flexible wipes, write verification, output to multiple targets at the same time, split and piped output.
https://dcfldd.sourceforge.net || dcflddAUR
  • dc3dd Another patched version of GNU dd from the United States Department of Defense Cyber Crime Center (DC3), with similar goals and features to dcfldd.
https://sourceforge.net/projects/dc3dd/ || dc3ddAUR

Modernised dd analogues

This subsection lists dd alternatives that do not conform to POSIX (in terms of the JCL-resembling command-line syntax and default behaviour).

  • dd_rescue A feature-packed, modernised dd analogue that is suitable for daily scripting, disk cloning, and data recovery.
https://www.garloff.de/kurt/linux/ddrescue/ || dd_rescue
  • rw Minimal and portable dd analogue with conventional command-line flags.
https://sortix.org/rw/ || rwAUR

buffer spin-offs

This subsection lists forks of bufferAUR, a general-purpose I/O buffering utility similar to dd but has a dynamic-sized buffer. It supports blockwise I/O and can be used when dumping from/to an LTO-tape to avoid shoe shining.

  • mbuffer Continuation of the buffer utility with threading and other features.
https://www.maier-komor.de/mbuffer.html || mbuffer

df alternatives

  • duf A disk usage/free utility.
https://github.com/muesli/duf || duf

du alternatives

  • cdu du wrapper with colors and a pretty histogram.
http://arsunik.free.fr/prog/cdu.html || cduAUR
  • dust A more intuitive version of du, in Rust.
https://github.com/bootandy/dust || dust
  • dua Fast disk usage analyzer, supports deleting files, written in Rust.
https://github.com/Byron/dua-cli || dua-cli
  • gdu Disk usage analyzer with console interface, written in Go.
https://github.com/Dundee/gdu || gdu
  • ncdu An extremely lightweight and simple ncurses based disk usage analyzer, written in Zig.
https://dev.yorhel.nl/ncdu || ncdu

See also List of applications/Utilities#Disk usage display.

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.