forked from Miroirs/x49gp
19 lines
292 B
Text
19 lines
292 B
Text
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -r "config.tmpl" ]
|
||
|
then
|
||
|
echo "Cannot read config.tmpl" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
B=${PWD##$HOME/}
|
||
|
perl -pi -e "s!^(basename=).*!\1$B!" <config.tmpl >config
|
||
|
|
||
|
if [ "$(uname -s)" = "Linux" ]
|
||
|
then
|
||
|
perl -pi -e "s!^(filename=sdcard).dmg!\1!" config
|
||
|
fi
|
||
|
|
||
|
echo "New config created"
|
||
|
exit 0
|