Sick Gaming
How to create a file in Linux from terminal window - Printable Version

+- Sick Gaming (https://www.sickgaming.net)
+-- Forum: Computers (https://www.sickgaming.net/forum-86.html)
+--- Forum: Linux, FreeBSD, and Unix types (https://www.sickgaming.net/forum-88.html)
+--- Thread: How to create a file in Linux from terminal window (/thread-85469.html)



How to create a file in Linux from terminal window - xSicKx - 07-01-2018

Depending on what you want the file to contain:
  • touch /path/to/file
  • for an empty file
    somecommand > /path/to/file
  • for a file containing the output of some command.
     eg: grep --help > randomtext.txt      echo "This is some text" > randomtext.txtnano /path/to/file
  • or
    vi /path/to/file
  • or
    any other editor emacs,gedit etcIt either opens the existing one for editing or creates & opens the empty file to enter, if it doesn't exist