1285
Linux Users
(lemmy.ml)
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.
You saying I can just skip cat in that command and it works?
history | grep 'cat'My output was empty for that command.
Guess why?
Because
historyonly gives the last few lines in my system.How did I not know this. Thank you!
it's
grep STRING FILEto be preciseor
awk '/STRING/′ FILEif you prefer that for some reason