Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 341 Bytes

SC1045.md

File metadata and controls

23 lines (14 loc) · 341 Bytes

Pattern: Redundant command termination

Issue: -

Description

Both & and ; terminate the command. You should only use one of them.

Example of incorrect code:

foo &; bar

Example of correct code:

foo & bar

Further Reading