Unix Commands
Remove all .DS_Store files
sudo find / -name ".DS_Store" -depth -exec rm {} \;
Disable .DS_Store files
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
Open all jpg files in the current subfolders
find . -name "*.jpg" | xargs open
Flush OSx DNS
sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder; say DNS cache flushed
Download IE VMs
curl -s https://raw.githubusercontent.com/xdissent/ievms/master/ievms.sh | env IEVMS_VERSIONS="7 9 EDGE" bash
List npm packages version and avoid errors
npm ls --depth=0 "$@" 2>/dev/null