2022年5月22日 星期日

Find Duplicate Files

檔案算 checksum -> checksum 排序找出相同的

以下待測試

find . ! -empty -type f -exec md5sum {} + | sort | uniq -w32 -dD
find . ! -type d -exec cksum {} ; | sort | tee /tmp/f.tmp | cut -f 1,2 -d ‘ ‘ | uniq -d | grep -hif – /tmp/f.tmp > duplicates.txt 

移除檔案

GUI

沒有留言:

張貼留言

SIP header Via

所有 SIP 訊息 都要有 Via,縮寫 v。一開始的 UAC 和後續途經的每個 proxy 都會疊加一個 Via 放傳送的位址,依序作為回應的路徑。 格式 sent-protocol sent-by [ ;branch= branch ][ ; 參數 ...] s...