mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Added bash migration script
This commit is contained in:
parent
24996d5966
commit
4db2d4efd9
37
migration.sh
Executable file
37
migration.sh
Executable file
@ -0,0 +1,37 @@
|
||||
#! /bin/bash
|
||||
#
|
||||
if [ $# != 1 ] ; then
|
||||
echo $0 requires a SleepyHead data folder name ;
|
||||
exit ;
|
||||
fi
|
||||
SRC=Documents/$1
|
||||
DEST=Documents/OSCAR_Data
|
||||
#
|
||||
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
|
||||
cd $DEST
|
||||
#
|
||||
for f in *.xml ; do
|
||||
echo Fixing $f ;
|
||||
sed -i s/SleepyHead/OSCAR/ $f ;
|
||||
done
|
||||
#
|
||||
cd Profiles
|
||||
|
||||
for f in * ; do
|
||||
if [ -d ${f} ]; then
|
||||
echo Entering folder $f ;
|
||||
cd $f ;
|
||||
for ff in *.xml ; do
|
||||
echo Fixing $ff ;
|
||||
sed -i s/SleepyHead/OSCAR/ $ff ;
|
||||
done
|
||||
cd ..
|
||||
fi
|
||||
done
|
||||
#
|
||||
echo All done!
|
||||
#
|
Loading…
Reference in New Issue
Block a user