Skip to content

Files

Latest commit

 

History

History
25 lines (16 loc) · 456 Bytes

SC3037.md

File metadata and controls

25 lines (16 loc) · 456 Bytes

Pattern: Use of undefined echo flag

Issue: -

Description

echo has historically behaved differently on different systems. Use printf instead to ensure compatibility between shells.

Example of incorrect code:

#!/bin/sh
echo -ne 'Foo:\tBar'

Example of correct code:

#!/bin/sh
printf 'Foo:\tBar'

Further Reading