true(1)
NAME
true, false − provide truth values
SYNTAX
true
false
DESCRIPTION
The true command returns an exit status 0 (success). The false command returns an exit status nonzero (unsuccessful). They are typically used in input to sh(1) such as:
while true
do
command
done