mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 01:08:25 +00:00
12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/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
|