Home » Questions » Computers [ Ask a new question ]

Making nano accepting previous piped output as a file path

Making nano accepting previous piped output as a file path

When I run the following command in linux:

Asked by: Guest | Views: 234
Total answers/comments: 1
Guest [Entry]

"Nano behaves like expected, since a pipe is used to connect on program's output to another one's input.

What you want instead is to use the output of find as an argument for nano:

nano `find / -iname httpd.conf`"