Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 506 Bytes

SC1130.md

File metadata and controls

27 lines (17 loc) · 506 Bytes

Pattern: Missing space before :

Issue: -

Description

: is a synonym for true, the command that "does nothing, successfully", and as a command name it needs a space.

do: is as invalid as dotrue. Use do :, or preferably, do true for readability.

Example of incorrect code:

until make
do:; done

Example of correct code:

until make
do :; done

Further Reading