Changes between Initial Version and Version 1 of jazz/12-11-16


Ignore:
Timestamp:
Nov 16, 2012, 12:09:25 PM (12 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/12-11-16

    v1 v1  
     1= 2012-11-16 =
     2
     3== Linux ==
     4
     5 * [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]
     6  * Google's TTS Translator
     7    * https://developer.chrome.com/extensions/ttsEngine.html
     8  * Find Duplicate Files - 找出重複的檔案
     9{{{
     10$ find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20
     11$ find . -type f -printf "%p - %s" | sort -nr -k3 | uniq -D -f1
     12}}}