run a shell in the background

How can I run a shell in the background?
cat test.sh
#!/bin/sh
sleep 600

Thank u very much indeed!

# ./test.sh &

Thank u very much indeed, it does work.