UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: Reference: factorChapter 2
Unix Commands
Next: Reference: fdformat
 

false

false

A do-nothing command that returns an unsuccessful (nonzero) exit status. Normally used in Bourne shell scripts. See also true.

Examples

 # This loop never executes
while false
do
	commands
done

 # This loop executes forever
until false
do
	commands
done


Previous: Reference: factorUNIX in a Nutshell: System V EditionNext: Reference: fdformat
Reference: factorBook IndexReference: fdformat

The UNIX CD Bookshelf NavigationThe UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System