mirror of
https://github.com/gwenhael-le-moine/x49gp.git
synced 2024-12-26 21:58:41 +01:00
18 lines
290 B
Bash
Executable file
18 lines
290 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -r "config.tmpl" ]
|
|
then
|
|
echo "Cannot read config.tmpl" >&2
|
|
exit 1
|
|
fi
|
|
|
|
B=${PWD##$HOME/}
|
|
perl -p -e "s!^(basename=).*!\1$B!" <config.tmpl >config
|
|
|
|
if [ "$(uname -s)" = "Linux" ]
|
|
then
|
|
perl -p -e "s!^(filename=sdcard).dmg!\1!" config
|
|
fi
|
|
|
|
echo "New config created"
|
|
exit 0
|