Grep \\* textfile-2. grep \ *\ textfile-3. grep \"*\" textfile-grep, sed, tail, head, less, sort, cut etc are string processing tools, which uses different symbls to match the pattern. whildcard charaacter: . Ã any single character * Ã zero or more character [abc] Ã any single character from the range [^abc] Ã any single character except from the range similarly anchors ^ Ã line beigns with $ Ã line ends with \\< Ã word beigns with \\> Ã word ends with so grep search the pattern and displays all lines matching the pattern. but * is the meaningfull character so to kill the meaning of meaningfull characters should use \\.