May 5, 2003 #1 jem122974 Programmer Nov 1, 2001 114 US Is there a command I can run to create an empty file?
May 5, 2003 #2 sleipnir214 Programmer May 6, 2002 15,350 US If you wanted to create a zero-length file named "foo", then issuing >foo at the shell prompt would likely do it. Want the best answers? Ask the best questions: http://www.catb.org/~esr/faqs/smart-questions.htmlTANSTAAFL! Upvote 0 Downvote
If you wanted to create a zero-length file named "foo", then issuing >foo at the shell prompt would likely do it. Want the best answers? Ask the best questions: http://www.catb.org/~esr/faqs/smart-questions.htmlTANSTAAFL!
May 5, 2003 Thread starter #3 jem122974 Programmer Nov 1, 2001 114 US perfect! thanks... Upvote 0 Downvote
May 5, 2003 #4 SamBones Programmer Aug 8, 2002 3,186 US The command... [tt] touch filename [/tt] ...will create an empty file. Upvote 0 Downvote