Possible Duplicate:
Semicolons superfluous at the end of a line in shell scripts?
In which situations in Bash scripts do you need a semicolon at the end of a line? I had thought it was just a command separator - is it thus redundant at line ends?
In which situations in Bash scripts do you need a semicolon at the end of a line? I had thought it was just a command separator - is it thus redundant at line ends? |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
They're needed in They're also used if you wan't to separate commands on a single line without worrying about whether the previous command failed or succeeded (in that case you would use For example:
Or:
|
|||||
|
;;. – mouviciel Dec 16 '11 at 5:34;;operator/keyword/token is the special construct.; ;does not terminate a case. – user166390 Dec 16 '11 at 5:36