> directs all stdout.. 2> directs all stderr.. > The > /dev/null sends output from the program to the null device instead > of your current window, and 2>&1 assists in this process in some obscure > unix magic way. The final & put the process in the background so you shell > can continue to work.