Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • I understand your points. One part I was confused by was the semicolon, since I thought it would execute more than 1 commands at the same time which is why I didn't use it. Commented Jul 26, 2017 at 18:02
  • The semicolon will not cause the commands to execute at the same time see here as a reference for executing commands. The & causes commands to run int he background, which means they wont be waited to finish before moving onto the next. Commented Jul 26, 2017 at 18:09