Thanks, but case doesn't seem to make a difference. I have this now:
#!/bin/bash
FILES="/Users/me/Desktop/media/*.MLV"
for f in $FILES
do
echo "0000068: FF 3F" | xxd -r - $f"
cat "$f"
done
Random gibberish output has been replaced with this:
line 6: unexpected EOF while looking for matching `"'
line 8: syntax error: unexpected end of file
A Google search reveals stuff about making sure text editor is using correct double quotes – which Sublime text is.
Anyone spot any schoolboy errors?
