Pattern: Redundant command termination
Issue: -
Both &
and ;
terminate the command. You should only use one of them.
Example of incorrect code:
foo &; bar
Example of correct code:
foo & bar
Pattern: Redundant command termination
Issue: -
Both &
and ;
terminate the command. You should only use one of them.
Example of incorrect code:
foo &; bar
Example of correct code:
foo & bar