OSCAR-code/history/migration.sh

38 lines
714 B
Bash
Raw Permalink Normal View History

2019-03-10 15:01:48 +00:00
#! /bin/bash
#
if [ $# != 1 ] ; then
echo $0 requires a SleepyHead data folder name ;
exit ;
fi
2019-03-10 18:54:15 +00:00
SRC=~/Documents/$1
DEST=~/Documents/OSCAR_Data
2019-03-10 15:01:48 +00:00
#
echo This will create a new folder called $DEST with a copy of the data in $SRC
echo suitably modified to work with OSCAR
#
#echo Copying $SRC to $DEST may take a while if you have many months of data
cp -r $SRC $DEST
2019-03-10 15:01:48 +00:00
cd $DEST
#
for f in *.xml ; do
echo Fixing $f ;
sed -i s/SleepyHead/OSCAR/ $f ;
done
#
cd Profiles
for f in * ; do
2019-03-10 18:54:15 +00:00
if [[ -d ${f} ]]; then
2019-03-10 15:01:48 +00:00
echo Entering folder $f ;
2019-03-10 18:54:15 +00:00
cd "$f" ;
2019-03-10 15:01:48 +00:00
for ff in *.xml ; do
echo Fixing $ff ;
sed -i s/SleepyHead/OSCAR/ $ff ;
done
cd ..
fi
done
#
echo All done!
#