May 5, 2003 #1 jem122974 Programmer Joined Nov 1, 2001 Messages 114 Location US Is there a command I can run to create an empty file?
May 5, 2003 #2 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location 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 Joined Nov 1, 2001 Messages 114 Location US perfect! thanks... Upvote 0 Downvote
May 5, 2003 #4 SamBones Programmer Joined Aug 8, 2002 Messages 3,186 Location US The command... [tt] touch filename [/tt] ...will create an empty file. Upvote 0 Downvote