mirror of
https://github.com/elliotnunn/ToolboxToolbox.git
synced 2025-01-20 09:31:07 +00:00
10 lines
221 B
Plaintext
10 lines
221 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
t="`mktemp`"
|
||
|
for x in "$@"; do
|
||
|
touch "$t"
|
||
|
SimpleRez -o "$t"/..namedfork/rsrc <(echo "data 'xxxx' (0) {"; xxd -p "$x" | sed 's/^/$"/' | sed 's/$/"/'; echo "};")
|
||
|
mpw DumpCode -rt xxxx=0 "$t"
|
||
|
done
|
||
|
rm -f "$t"
|