Sign up ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.

Time ago I've discovered a simple command line to turn the terminal window in a blackboard for just to take temporary notes. Talking about blackboard I doesn't mean nothing graphic, just alpha-numeric input. I don't remember that command anyway and hard googling didn't help me. Any help?

share|improve this question

put on hold as unclear what you're asking by bahamat, G-Man, Archemar, Anthon, chaos 13 hours ago

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

1  
You mean graphical notes? Or do you wish them in a terminal? –  burian.vlastimil yesterday
1  
What do you mean by blackboard? Do you expect to draw arbitrary shapes on it? Please edit your question and describe what you need in more detail. –  terdon yesterday
    
@burian.vlastimil No graphic just terminal, in a passive no-command-intercept mode. –  Symb932 yesterday
2  
Would nano suffice? –  burian.vlastimil yesterday
    
@burian.vlastimil I don't want open any text editor, just cttrl-d to exit edit mode without salving/not-salving files and so concerns. –  Symb932 yesterday

3 Answers 3

up vote 7 down vote accepted

What you are probably looking for is:

reset; cat > /dev/null

share|improve this answer
1  
You can also save to a file by changing the /dev/null to some other filename. –  Kroltan yesterday

Maybe nano? That's a text editor, so you can read and write text files with it, but it can also be used for what you describe.

There is also the option of clearing the terminal and keeping it blank, making it totally empty and letting you write whatever. Something like reset; cat > /dev/null would work. Note that you can not edit your "blackboard" this way, while with nano you can.

share|improve this answer
    
I agree with you. If a user wants to save his notes, nano is the best option. I also feel like this answer should have been accepted. You mentioned the method in the accepted answer first. –  Elixir of Love yesterday
    
For a site which has a forum on user interface design, we then have a silly interface that does not show (easily) which reply was first. One need to hover the "answered H hours ago" line. Silly. Hope SE improves that. –  Rolazaro Azeveires yesterday
    
@RolazaroAzeveires You can sort the answers by date, just below the question's comments on the right. Doesn't work to compare comments from two different answers though... –  Thomas yesterday
1  
@Thomas: Oh... Thanks. Member for 3 years, read a few topics more than a third of those and... Looks like I am not as smart as I think (almost no one is... :-) I still say the UI is not good, while trying to be smart they eventually hide functionality. There is the shown rounded time - updated automatically! your comment changed from 1 to 2 hours in front of my eyes just now - and there is a tool-tip, down to the exact second, I eventually forgot there is still another (3rd) way to see the time. Well... thank you for the hint and forgive me (all) for going off-topic on a comment –  Rolazaro Azeveires 22 hours ago

If you do stty cbreak -echo; cat, you can move around with arrows and clear the screen by typing ESC [ 2 J, set colors by typing other ANSI escape sequences, etc. Exit with ctrl-C. You may need to run reset or stty sane afterwards, it might be worthwhile to set up a script to do this if you need it often.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.