7

I'm using FileZilla and have found the default LibreOffice Writer not the best for on-the-go code editing.

I have the option to use custom program for text editing, so why not give nano a go. So I'm wondering, where is the nano (shell script?) file located?

I had a quick Google for this question and only found an ArchLinux forum posing the question on this thread.

From the thread, I checked /usr/bin/nano and it's not existant there.

3 Answers3

11

The easiest method:

$ which nano
/bin/nano
Rinzwind
  • 309,379
2

Or you can use

$ whereis nano
nano: /bin/nano 
dessert
  • 40,956
0

You might like geany which is a useful GUI editor for text files.

sudo apt-get install geany
sudodus
  • 47,684