Skip to main content

Posts

Showing posts with the label NANO

Install and Use GNU Nano Text Editor

How to Install  Nano  Text Editor The procedure depends on the the operating system you are running.   Specifically, some of them as of now accompany the Nano text editorial manager pre-installed.   Installing Nano on Debian/Ubuntu   E xecute the following command:   sudo apt-get install nano   Installing Nano on  CentOS/RHEL   E xecute this command:   yum install nano How to Use Nano Text Editor   Open and close files command to open the editor is: nano filename To open a file in another directory use: nano /path/to/directory/test.txt To save the changes made in the file and continue editing press  CTRL + O . To exit the editor, press CTRL + X . If changes have been made to the current open file, it will ask if it will save them or else it will come out immediately. Enter y for yes or n for no and then press ENTER. Editing Text In order to  se...