The first line of your script needs to be:
#!/bin/bash
Without that shebang line, your script will be interpreted by sh
which doesn't understand [[
in if
statements.
Dennis Williamson
2010-08-03 22:17:48