💾Regex

Regular Expressions

Basic Tricks

Match delimiters content "
[^"]+
// Some code


#Making a diccionary (arguments 1 and 4)
awk '{print $1}' FS=':' dump.txt > users.txt
awk '{print $4}' FS=':' dump.txt > hashes.txt

Last updated