As part of a slightly complex script, I need to tell a server to run a simulation. Normally, I would achieve this by doing ssh user@server \'simulation/script\'
ssh user@server \'simulation/script\'
You can do it using sleep command like that:
bash -c 'sleep 5 ; echo "test"' &