Skip to content
Snippets Groups Projects
Commit c8b45812 authored by Peter Eckel's avatar Peter Eckel
Browse files

Fixed locale environment variables for macOS

parent cb046114
No related branches found
No related tags found
1 merge request!246Fixed locale environment variables for macOS
...@@ -6,7 +6,7 @@ BIN1="$2" ...@@ -6,7 +6,7 @@ BIN1="$2"
BIN2="$3" BIN2="$3"
BINOUT="$4" BINOUT="$4"
dd if=/dev/zero ibs=1k count=448 2>/dev/null | LANG=C LC_CTYPE=C tr "\000" "\377" > "$BINOUT" dd if=/dev/zero ibs=1k count=448 2>/dev/null | LANG=C LC_CTYPE=C LC_ALL=C LC_COLLATE=C tr "\000" "\377" > "$BINOUT"
dd if="$BIN1" of="$BINOUT" conv=notrunc 2>/dev/null dd if="$BIN1" of="$BINOUT" conv=notrunc 2>/dev/null
dd if="$BIN2" >> "$BINOUT" 2>/dev/null dd if="$BIN2" >> "$BINOUT" 2>/dev/null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment