可以的,我给你写出来吧,用shell ,+741345015
你还不如把filename的格式贴出来
linux shell处理string的能力比dos不知强了多少倍
假设你要处理/path/to/20131223下的文件
#!/bin/sh
while IFS='~' read -ra ln; do
for x in "${ln[@]}"; do
find /path/to/20131223 -type t -name $x -exec rm {} \;
done
done < /path/to/filename