Apr 18, 2003 #1 pho01 Programmer Mar 17, 2003 218 US how do I cat a file (or do whatever) to display the content of a file from a certain mark. For instance: I have file name "test.txt". I want to get its content from "Start here:" to the end of the file. How do I do that? Thanks
how do I cat a file (or do whatever) to display the content of a file from a certain mark. For instance: I have file name "test.txt". I want to get its content from "Start here:" to the end of the file. How do I do that? Thanks
Apr 19, 2003 #2 marsd IS-IT--Management Apr 25, 2001 2,218 US sed -n '/pattern/,$ p' filename. Upvote 0 Downvote