Thanks for the script, I was a bit puzzled when Squeak just hung forever at the image selection dialog. When I copy-pasted your script from Midori to LXTerminal, the mv commands didn't work: there's some funny space character after mv that makes the shell say:
With that corrected, it all works fine for me on Wheezy (512MB model B, 2GB SD card). It's unsurprisingly a big slow, but since I know VisualWorks Smalltalk, it may still be the quickest way to do some tasks. E.g. I just wanted to scale a screenshot down, so rather than download ImageMagick or GIMP I did:
screenshot := ImageReadWriter formFromFileNamed: '/home/pi/2013-01-05-025204_1920x1080_scrot.png'.
smallScreenshot := screenshot scaledIntoFormOfSize: screenshot extent / 4.
PNGReadWriter putForm: smallScreenshot onFileNamed: '/home/pi/rpi.png'.
Looks like Midori is taking half the CPU cycles, so Squeak may be faster once I've finished this post...