| 1 | = File Editing = |
| 2 | |
| 3 | == File Editing Software == |
| 4 | The following are the three most commonly used editors |
| 5 | |
| 6 | === nano === |
| 7 | |
| 8 | nano is the easiest to use editor available on the clusters. |
| 9 | |
| 10 | Use the following command to open a file for editing with nano: |
| 11 | |
| 12 | {{{ user@host> nano filename }}} |
| 13 | |
| 14 | === vim === |
| 15 | vim is the improved version of vi with code syntax highlighting and other features useful for programming. This editor has a steep learning curve, but is very efficient. |
| 16 | |
| 17 | [[https://blog.interlinked.org/tutorials/vim_tutorial.html | Vim Introduction]] |
| 18 | |
| 19 | === emacs === |
| 20 | emacs also has code syntax highlighting along with auto-indentation and a whole list of other advanced editing features. |
| 21 | |
| 22 | [[http://insti.physics.sunysb.edu/itp/computing/doc/emacs-intro.html|Emacs Introduction]] |