Notes
(Snippets, scraps, and other miscellany.)
Last updated
(Snippets, scraps, and other miscellany.)
Last updated
===
grep ()
Pulls hex values from the tailend of asciiftw; z option makes them a one-liner:
cat ascii | grep -oP "0x\K."
cat ascii | grep -zoP "0x\K."
===
/etc/apt/sources.list | sort -u
Seeing what kali is pulling for updates and upgrades
===