Ubuntu下批量使用Tecplot的preplot命令对数据进行处理
首先把.PLT文件后缀批量修改为.dat
rename 's/.PLT$/.dat/' *.PLT
对所有.dat文件批量执行preplot
find ./ -name "*.dat" -exec preplot '{}' ';'
删除.dat文件
find ./ -name "*.dat" -exec preplot '{}' +
rename 's/.PLT$/.dat/' *.PLT
find ./ -name "*.dat" -exec preplot '{}' ';'
find ./ -name "*.dat" -exec preplot '{}' +