-
Notifications
You must be signed in to change notification settings - Fork 1
/
preplot.sh
executable file
·24 lines (23 loc) · 1.03 KB
/
preplot.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
clear
echo "#####################################################################"
echo "# #"
echo "# PREPLOT CONVERTOR #"
echo "# #"
echo "#####################################################################"
echo
echo "Clearing data from preplot folder..."
rm ./output/preplot/*.plt
echo
cd output
preplotRun="/usr/local/tec360/bin/preplot"
for f in *.dat
do
echo "Processing $f"
$preplotRun $f
done
mv *.plt ./preplot/ # This is the name of the directory you create in 'output'
echo "#####################################################################"
echo "# #"
echo "# FIN. #"
echo "# #"
echo "#####################################################################"