Shell

Shell

Made by DeepSource

Unnecessary use of multiple line terminators SH-1045

Anti-pattern
Major

Problematic code:

foo &; bar

Preferred code:

foo & bar

Both & and ; terminate the command. It is recommended to use only one of them.