Skip to content

Files

Latest commit

 

History

History
26 lines (16 loc) · 448 Bytes

SC2269.md

File metadata and controls

26 lines (16 loc) · 448 Bytes

Pattern: Variable is assigned to itself

Issue: -

Description

Variable is assigned to itself, e.g. x=$x. This obviously has no effect.

Double check what the assignment was supposed to do.

Example of incorrect code:

var="$var"

Example of correct code:

# If the goal is to do nothing
true

Further Reading