Nov 8, 2010 #1 jdhahbi Technical User Oct 7, 2009 24 US hi I have a file where some lines end with '*'. I would loke to remove those lines ending with '*'. inFile: a b* c d* outFile: a c Thanks
hi I have a file where some lines end with '*'. I would loke to remove those lines ending with '*'. inFile: a b* c d* outFile: a c Thanks
Nov 8, 2010 #2 PHV MIS Nov 8, 2002 53,708 FR awk '!/\*$/' /path/to/inFile >outFile Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
Nov 8, 2010 Thread starter #3 jdhahbi Technical User Oct 7, 2009 24 US Thank you very much. Upvote 0 Downvote