Tofu
Tofu is the best food all around the world!


Bash

删除重復文件

mv `md5sum *.* | sort | uniq -w 32 -d | awk ‘{print $2}’` repeated/


頭像墻

用緩存在本地的 Gravatar 頭像製作了一個頭像墻,代碼如下,需要 ImageMagick 支持 #! /bin/bash   n=1 col=6 isize=48 dir=/ls.tl/t/image/glc_cache num=`ls -l $dir/*$isize.jpg | wc -l` row=$(( $num / $col )) osize=$(( $col * $isize ))"x"$(( $row * $isize )) eval `ls -l $dir/*$isize.jpg | awk ‘{print $NF}’ | awk ‘{print "filename["++i"]="$0}’`   echo "total avatars: "$num echo "output size: "$col"cols x "$row"rows [...]