#!/bin/sh # # some variations for executing 3 commands $1 ; $2 ; $3 # commands get executed after one another $1 && $2 && $3 # commands get only executed if previous succeeds $1 & $2 & $3 & # commands get forked # well you get the point, man sh for more ...