mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
12 lines
210 B
Bash
12 lines
210 B
Bash
#!/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
|