true

Do nothing, returning a zero (true) exit status

Syntax:
      true

'true' does nothing except return an exit status of 0, meaning "success". It can be used as a place holder in shell scripts where a successful command is needed, although the shell built-in command : (colon) does the same thing faster.

'true' ignores all command line arguments, even --help and --version, since to do otherwise would change expected behavior that some programmers may be relying on.

This version of 'true' is implemented as a C program, and is thus more secure and faster than a shell script implementation, and may safely be used as a dummy shell for the purpose of disabling accounts.

"You are never dedicated to something you have complete confidence in. No-one is fanatically shouting that the sun is going to rise tomorrow. When people are fanatically devoted to political or religious faiths or any other kind of dogmas or goals, its always because these dogmas or goals are in doubt" ~ Robert M Pirsig

Related linux commands:

false - Do nothing, unsuccessfully.
yes - Print a string until interrupted.
Equivalent Windows command: The COLOR command can be used be used to set an %errorlevel% =1.


 
Copyright © SS64.com 1999-2019
Some rights reserved