Created
April 30, 2019 14:44
-
-
Save artbikes/4b6dca6d02bc7d67fcc91e6d93babace to your computer and use it in GitHub Desktop.
The history I really want
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hist () { | |
if [ "$#" -gt 0 ]; then | |
target="$@" | |
history | grep "${target}" | tail | |
else | |
history | tail | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment