this post was submitted on 18 Jan 2024
139 points (94.3% liked)

Programmer Humor

23599 readers
889 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

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] zemja 12 points 1 year ago (2 children)

Can somebody please tell me what history -c is?

[–] [email protected] 9 points 1 year ago (3 children)

history displays a list of all commands you have run on the terminal since the history list was last cleared. It is invaluable for referring back to a big complex command or set of commands you ran at some point in the past. The -c flag clears that history.

[–] zemja 11 points 1 year ago

Fuck, I just cleared my history.

[–] [email protected] 5 points 1 year ago (1 children)
[–] [email protected] 6 points 1 year ago* (last edited 1 year ago)

It lets you clear the bash command history, either completely or selectively. Here's the GNU docs for the history builtin: https://www.gnu.org/software/bash/manual/html_node/Bash-History-Builtins.html#index-history

(I'm not too familiar, someone else can clarify: is this available outside bash?)

What's interesting to me is the -a option, which lets you "flush" the history for the current session without ending the session. I can see that being useful!