14

What is the simplest way to create a file using a command-line? Usually I use:

touch filename

But is this the simplest/fastest way?

muru
  • 197,895
  • 55
  • 485
  • 740
Radu Rădeanu
  • 169,590

1 Answers1

19

This will save you five keypresses relative to touch filename

>filename

but is not the equivalent of touch as it will truncate filename if it exists. The following does what you want

>>filename

but note that it is not equivalent to touch either, as it does not update filename's modification timestamp.

zwets
  • 12,354