Skip to content

Instantly share code, notes, and snippets.

@yarapavan
Last active August 29, 2015 14:02
Show Gist options
  • Save yarapavan/1fba2c851ad7bdca282b to your computer and use it in GitHub Desktop.
Save yarapavan/1fba2c851ad7bdca282b to your computer and use it in GitHub Desktop.
Miscelli
Extract html links:
lynx -dump -listonly html.htm
grep -oP "(?<=src=\")[^\"]+(?=\")" test.txtgrep -oP "(?<=src=\")[^\"]+(?=\")" html.txt
awk -F\" '{print $(NF-1)}' html.txt
Fix Mac CLI permission errors (Insecure world writable dir /usr/local in PATH, mode 040777):
1. Disk utility > repair disk permissions
2. chmod -R o-w /usr/local/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment