Nov 8, 2010 #1 jdhahbi Technical User Joined Oct 7, 2009 Messages 24 Location 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 Joined Nov 8, 2002 Messages 53,708 Location 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 Joined Oct 7, 2009 Messages 24 Location US Thank you very much. Upvote 0 Downvote