In computing, Regular Expressions (often shortened to "regex") are sequences of characters that form a search pattern. They're used for string matching and manipulation. Regular expressions are...
Category: Terminal Power User
Imagine you have two files that have minor differences in them.It might be difficult to spot the differences between them. Thankfully, there is a command called diff that will help us out. diff...
This next command is very powerful and yet I don't fully understand it's power. The command is awk. Awk is really good at processing lines of a file.This might sounds familiar. After all, we...