Extract GitHub repository URLs from BlackArch tools pages Using awk (opens in new tab)
curl -sL blackarch.org/{tools,recon}.html | awk -F'\"' '$4 ~ /^https:\/\/github\.com\// { print $4 }' - (Extract GitHub repository URLs from BlackArch tools pages Downloads BlackArch tool pages and prints only GitHub links using pure awk filtering.). The best command line collection on the internet, submit yours and save your favorites.
Read the original article