5

Is there a command to clear all of the history in a Cygwin console window without losing the .bash_history?

erikvold
  • 4,037
  • This is a duplicate of this question, except that it isn't as well written. If you had written your question better, Erik Vold, without misnaming terminal output as "history" for starters, you wouldn't have had to explain what you were asking over and over in comments. This should be closed as a duplicate. – JdeBP Mar 11 '11 at 22:13
  • @JdeBP did you try the solution mentioned there? it does not work.. – erikvold Mar 11 '11 at 22:28
  • 3
    @JdeBP Cygwin != *nix console... So, no dupe IMHO... Please don't be too harsh, try to be constructive in your criticism... – Pylsa Mar 11 '11 at 22:31

5 Answers5

9

Click Ctrl-L. It should clear everything without losing the .bash_history. `

paradd0x
  • 9,215
6

If you mean you want to clear the console window: install ncurses (in Utils) and then you can use:

clear
Hans
  • 335
1

Open Windows Explorer then navigate to:

[Cygwin Installation Directory]\home\[User]\

e.g.: C:\cygwin\home\wreckseal

then open the file .bashrc with Notepad++.

Move your cursor at the end of the last line and hit Enter key, then add the text below.

alias cls='echo -e "\033c"'

or the text below:

alias cls='printf "\033c"'

Restart cygwin, type cls. Done!

Note that there's no scrollbar after sending the cls command. I prefer the printf version than the echo version. Try it yourself!

1

I use Alt+F8 and the screen is like you have just open a fresh cygwin!

0

There are two simple ways:

  1. Type the command clear
  2. Ctrl+L
Ben N
  • 40,965