Here are some key things to practice with regular expressions using grep, sed and awk:
- Use grep to search files for patterns using basic regex metacharacters like ^, $, ., *, [, ], etc.
- Use sed for search and replace operations on files using regex to match patterns
- Use awk to parse files into fields based on delimiters like space, comma etc and perform operations on the fields stored in variables $1, $2 etc.
- Write simple awk scripts to print, filter and manipulate data from files. For example print certain fields, filter rows, perform calculations etc.
- Learn about more advanced regex features supported by tools like extended regex in grep, backreferences in sed etc