| python regexs.py 'that that' [name of file] | prints all lines containing 'that that' in the file |
| python regexs-utf16.py '\bdis(\w+)\b' *.txt | prints all lines containing text matching the regular expression in all files with extension ".txt" in the current directory |
| python regexcount.py '\bdis(\w+)\b' *.txt | prints prints all lines containing text matching the regular expression in all files with extension ".txt" in the current directory, with a count of the number of times it appeared at the bottom |