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

87 matched guides, best match first. Page 6 of 8.

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 )

Linux rmdir command examples showing how to safely remove empty directories

rmdir Command in Linux (With Examples)

Empty directories often survive builds, downloads, archives, and cleanup scripts. The rmdir command in Linux removes only empty directories, so it gives you a safer first pass before...

Updated ( Published )

Linux chmod command syntax and file permissions guide with practical examples

chmod Command in Linux with Examples

Permission mistakes can quietly break deployments or expose private files, which is why the chmod command in Linux is worth understanding before you copy a recursive fix from...

Updated ( Published )

Terminal window showing grep command filtering text output on Linux system.

grep Command in Linux with Examples

Logs, configuration files, and command output get noisy fast; the grep command in Linux cuts them down to the lines that match a word, phrase, or regular expression....

Updated ( Published )

Linux penguin mascot with magnifying glass over terminal icon representing command lookup

which Command in Linux with Examples

PATH problems usually look simple until two copies of the same tool exist on one system. The which command in Linux shows the executable path your current $PATH...

Updated ( Published )