Search code examples
vimgrepvimgrep

How to recursively grep the pattern inside the directory?


I would like to grep all string patterns which are start with the: student_ , then any numbers of symbols(letters and digits) and end with the .tcl


Solution

  • grep "student_[[:alnum:]]*\.tcl" *