mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Grab the migration changes pushed from Lenny61
This commit is contained in:
commit
771ba88a91
10
migration.sh
10
migration.sh
@ -4,14 +4,14 @@ if [ $# != 1 ] ; then
|
|||||||
echo $0 requires a SleepyHead data folder name ;
|
echo $0 requires a SleepyHead data folder name ;
|
||||||
exit ;
|
exit ;
|
||||||
fi
|
fi
|
||||||
SRC=Documents/$1
|
SRC=~/Documents/$1
|
||||||
DEST=Documents/OSCAR_Data
|
DEST=~/Documents/OSCAR_Data
|
||||||
#
|
#
|
||||||
echo This will create a new folder called $DEST with a copy of the data in $SRC
|
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 suitably modified to work with OSCAR
|
||||||
#
|
#
|
||||||
#echo Copying $SRC to $DEST may take a while if you have many months of data
|
#echo Copying $SRC to $DEST may take a while if you have many months of data
|
||||||
cp -r $SRC $DEST
|
#cp -r $SRC $DEST
|
||||||
cd $DEST
|
cd $DEST
|
||||||
#
|
#
|
||||||
for f in *.xml ; do
|
for f in *.xml ; do
|
||||||
@ -22,9 +22,9 @@ done
|
|||||||
cd Profiles
|
cd Profiles
|
||||||
|
|
||||||
for f in * ; do
|
for f in * ; do
|
||||||
if [ -d ${f} ]; then
|
if [[ -d ${f} ]]; then
|
||||||
echo Entering folder $f ;
|
echo Entering folder $f ;
|
||||||
cd $f ;
|
cd "$f" ;
|
||||||
for ff in *.xml ; do
|
for ff in *.xml ; do
|
||||||
echo Fixing $ff ;
|
echo Fixing $ff ;
|
||||||
sed -i s/SleepyHead/OSCAR/ $ff ;
|
sed -i s/SleepyHead/OSCAR/ $ff ;
|
||||||
|
Loading…
Reference in New Issue
Block a user