summaryrefslogtreecommitdiff
path: root/PyGan/data/rDragView.save
blob: cfdb000d3c86b9f98020aa6b616646e94729bc82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
if [ $# = 0 ]
   then
   echo "usage: rDragView.save directory" 1>&2
   exit 1
fi
echo "access rDragView.save"
MACH=`uname -s`
Sysx="`echo $MACH | cut -b -6`"
if [ $Sysx = "CYGWIN" ]; then
   MACH=`uname -o`
elif [ $Sysx = "AIX" ]; then
   MACH=`uname -s`
else
   MACH=`uname -sm | sed 's/[ ]/_/'`
fi
ls -l
mv *.vtu $1/"$MACH"/
echo "rDragView.save completed"