mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-27 13:44:17 +01:00
9 lines
183 B
Bash
9 lines
183 B
Bash
#!/bin/sh
|
|
if [ -n "$1" ]; then
|
|
perl -e '@file=<>;print "\xEF\xBB\xBF";print(@file);' < "$1" > "$1".tmp
|
|
mv "$1".tmp "$1"
|
|
else
|
|
perl -e '@file=<>;print "\xEF\xBB\xBF";print(@file);'
|
|
fi
|
|
|