I have just started to learn shell scripting on Ubuntu and thought of writing a basic script which starts conky and plank and placing it in /usr/bin so that I can run it as a command.I did make it an executable too.
#!/bin/bash
echo `conky -q &`
echo `plank &`
Only conky gets started up.