Dec 20, 2007 #1 hokky Technical User Nov 9, 2006 170 AU Hi, just trying to find in file *20070312.csv the pattern ignore case "com*-asx" in linux redhat trying : grep -ei "com*-asx" *20070312.csv doesn't work ? any idea ? should be simple but just couldn't get my head around. thanks.
Hi, just trying to find in file *20070312.csv the pattern ignore case "com*-asx" in linux redhat trying : grep -ei "com*-asx" *20070312.csv doesn't work ? any idea ? should be simple but just couldn't get my head around. thanks.
Dec 20, 2007 1 #2 Annihilannic MIS Jun 22, 2000 6,317 AU m* means any number of m characters. If you just mean com followed by anything followed by -asx, you should use com.*-asx Annihilannic. Upvote 0 Downvote
m* means any number of m characters. If you just mean com followed by anything followed by -asx, you should use com.*-asx Annihilannic.
Jan 24, 2008 #3 quirkasaurus Programmer Jun 25, 2002 18 US just add a dot: grep "com.*-asx" an asterisk by itself means any number of occurances of the previous character; in this case, "m". Upvote 0 Downvote
just add a dot: grep "com.*-asx" an asterisk by itself means any number of occurances of the previous character; in this case, "m".