find /path/to/ -name "*.jpg" > log
如何修改此字符串以找到不仅是.jpg文件?
find /path/to -regex ".*\.\(jpg\|gif\|png\|jpeg\)" > log