1
0
Fork 0
forked from Miroirs/x49gp
x50ng/newconfig

18 lines
292 B
Bash
Executable file

#!/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