Table of Contents

This article is Part 2 in a series of cheat-sheets on the command line shell, bash. (Previous Page | Next Page)

bash: Keyboard Shortcuts and Piping Commands

Copy and Paste

Command Line Editing

Command Completion

Recall last ten commands from history:

$ history 10

Execute command from history with value of xxx:

$ !xxx

Execute last command from history:

$ !!

Open historical command xxx in text editor:

$ fc xxx

Working With Multiple Commands At Once

Executes pwd followed by ls:

$ pwd ; ls

Executes commands in new child shell:

$ (pwd ; ls)

Sorts passwd and opens the results in less:

$ cat /etc/passwd | sort | less

Untars file in background:

$ tar -xvf file &

Expands variable TEST:

$ echo $TEST

Search for all files in /home containing test in filename and open them in vi:

$ vi $(find /home | grep test)

Example of arithmetic expression:

$ echo "$[2000 - 1500]"

Metacharacters



This article is part of a series on Command Line
Linux, MacOS & BSD
Shells: Bash (Getting Started - Shortcuts & Piping - Managing Processes - Users & Permissions - Files & Archives - Customization) - zsh
Emulators/Multiplexers: tmux
Windows
PowerShell