line 2: [foo: command not found
#!/bin/bash if ["foo" = "foo"]; then echo "The first number is smaller then the second!" fi
#!/bin/bash if [ "foo" = "foo" ]; then echo "The first number is smaller then the second!" fi