mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
DEVTOOLS: Put script which is used for preserving WAGE games
This commit is contained in:
parent
4610ae906b
commit
307c8b0ecb
11
devtools/encode-macbinary.sh
Executable file
11
devtools/encode-macbinary.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Iterates over current directory, encodes all files with
|
||||
# MacBinary but ensures that the dates are preserved
|
||||
|
||||
for i in *
|
||||
do
|
||||
macbinary encode "$i"
|
||||
touch -r "$i" "$i.bin"
|
||||
mv "$i.bin" "$i"
|
||||
done
|
Loading…
Reference in New Issue
Block a user