Chris Mohler: > should work. '&&' basically means "wait for the previous command to > complete, then keep going". No. command1 && command2 basically means "execute command2 if and only if command1 has exited with an exit status of 0". Regards mks