0

Exactly what the title asks. Is the terminal window a text editor, can it be used as one, and if not then which are some good ones to install?

Andy
  • 55
  • 5
  • vim , nano to name a few ... – Panther Jan 19 '16 at 21:20
  • Possible duplicate of [How do I find out what my default terminal text editor is?](http://askubuntu.com/questions/709029/how-do-i-find-out-what-my-default-terminal-text-editor-is) – bain Jan 19 '16 at 21:38
  • 1
    or [Text editors in ubuntu? vim vs. emac vs. nano](http://askubuntu.com/questions/804/text-editors-in-ubuntu-vim-vs-emac-vs-nano) – bain Jan 19 '16 at 21:38

1 Answers1

1

No, the terminal is not a text editor (even though it can be used as one). The terminal is a program where you can issue commands to your system.

Commands are nothing but binaries (executables in the form of binary language) and scripts located in specific paths of your system. Each command executes one specific task.

There are a few text editors for the command line interface, such as nano (a.k.a. Pico) and vim. For example, if you run nano in your terminal it will open a blank text file that you can edit/save.

Eduardo Cola
  • 5,757
  • 3
  • 18
  • 32