Skip to content

Instantly share code, notes, and snippets.

View skarabasakis's full-sized avatar

Stelios Karabasakis skarabasakis

View GitHub Profile
@skarabasakis
skarabasakis / bangs.txt
Created April 18, 2014 09:35
Reusing bash history with bangs
$ !! # Repeat last command
$ !x # Repeat last command that started with x
$ !?x # Repeat last command that has the substring x
$ !10 # Repeat 10th command in the history file
$ !-10 # Repeat 10th from last command in the history file
$ !!* # Fetch parameters from last command
$ !!^ # Fetch first parameter from last command
$ !!$ # Fetch last parameter from last command
$ !!3 # Fetch third parameter from last command