= 2012-11-16 = == Linux == * [https://www.linux.com/learn/docs/660651-bag-of-fun-and-useful-random-linux-comman Random Linux Commands to Make Google Talk, Fix Wifi, Find Duplicate Files, and More] * Google's TTS Translator * https://developer.chrome.com/extensions/ttsEngine.html * Find Duplicate Files - 找出重複的檔案 {{{ $ find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 $ find . -type f -printf "%p - %s" | sort -nr -k3 | uniq -D -f1 }}}