Linux command examples - Page 6

Find practical command examples with flags, expected output, common mistakes, and safer ways to run everyday shell workflows.

Curated guides

Linux command guides

80 matched guides, best match first. Page 6 of 7.

Tux holding a magnifying glass revealing binary, manual page, and source file icons for the whereis command

whereis Command in Linux with Examples

When a command exists in more than one place, or its documentation seems missing, the whereis command in Linux gives you a quick inventory of the binary, source,...

Updated ( Published )

Terminal window showing the Linux read command capturing user input in a Bash script

read Command in Linux with Examples

Interactive shell scripts need a clean way to pause, collect an answer, and reuse that value in the next command. The read command in Linux handles that job...

Updated ( Published )

ifconfig and net-tools logos representing network interface configuration on Linux

ifconfig Command in Linux with Examples

Legacy network notes still tell admins to run the ifconfig command in Linux, especially on older servers, embedded images, and scripts written before iproute2 became standard. ifconfig reads...

Updated ( Published )

wget command examples in Linux terminal showing file download and automation options

wget Command in Linux with Examples

Large downloads, flaky SSH sessions, and offline documentation mirrors are where the wget command earns its keep. It retrieves files over HTTP, HTTPS, FTP, and FTPS without a...

Updated ( Published )

SSH key logo and Linux Tux penguin representing secure remote server connections

ssh Command in Linux with Examples

Remote administration depends on SSH because login sessions, one-off commands, and encrypted tunnels all travel through the same client without exposing plaintext credentials. The ssh command in Linux...

Updated ( Published )

du command bar chart logo and Tux penguin representing Linux disk usage analysis

du Command in Linux (With Examples)

When a filesystem starts filling up, the du command in Linux tells you which directories and files are actually consuming space. It is useful for checking log growth,...

Updated ( Published )

split command text and Linux penguin logo representing file splitting on Linux

split Command in Linux with Examples

Large logs, database exports, and backup archives get easier to move or process when you can cut them into predictable pieces without changing the original data. The split...

Updated ( Published )

Illustration showing the mkdir command creating nested directory structures in Linux terminal

mkdir Command in Linux with Examples

Directory setup gets repetitive fast when projects, logs, uploads, and backups all need predictable paths. The mkdir command in Linux creates those directories from the shell, whether you...

Updated ( Published )