this post was submitted on 16 Aug 2024
380 points (96.1% liked)
Programmer Humor
19488 readers
1147 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I really like this comic. Just in case someone didn't know in Linux you can:
-Ctrl + r to search previous commands
Or
-type history and precede the command number by an exclamation (!) to repeat the command (I.e. "!13")
That's a readline thing by the way, so it doesn't just work in bash but also works with other cli applications that are compiled with readline support, for example
virsh
,psql
,fdisk
, ...