Ubuntu下批量使用Tecplot的preplot命令对数据进行处理

首先把.PLT文件后缀批量修改为.dat

rename 's/.PLT$/.dat/' *.PLT

对所有.dat文件批量执行preplot

find ./ -name "*.dat" -exec preplot '{}' ';'

删除.dat文件

find ./ -name "*.dat" -exec preplot '{}' +
posted @ 2017-12-06 10:29  2021年的顺遂平安君  阅读(103)  评论(0编辑  收藏  举报