mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 03:41:10 +08:00
6 lines
235 B
Bash
Executable File
6 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
src/dosbox-x -c 'config -all -wc dosbox.reference.conf' -c 'exit' || exit 1
|
|
sed $'s/$/\r/' 'dosbox.reference.conf' >'dosbox.reference.conf.tmp' || exit 1
|
|
mv -v 'dosbox.reference.conf.tmp' 'dosbox.reference.conf' || exit 1
|
|
|