BASH-Variable Expansion Formats

Variable Expansion Formats ${#variable} length of variable ${variable:–word} value of variable if set and not null, else print word ${variable:= word} value of variable if set and not null, […]

Flush DNS cache

How to clear the local DNS cache…. OSX 10.10 sudo discoveryutil udnsflushcaches OSX 10.9 dscacheutil -flushcache; sudo killall -HUP mDNSResponder OSX 10.7 […]