colon usage as true | fork bomb :(){ :|: & };: | POSIX
Portable Operating System Interface (POSIX) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems
: > file
> file
That is a forever-loop.
function doSomethingStub {
:
}
===========================
if [ "$T1" = "$T2" ]
then
:
else
echo "Nope"
fi
In that case, the ":" is just a "do-nothing" place holder.
===========================
The colon (:) is a UNIX bourne shell "No op" (no operation). It does nothing and always returns Success. For example, in the following command:
rm $COMMDIR/LOG* $COMMDIR/DATA.* >./$scriptName.log 2>/dev/null ;:
rm $COMMDIR/LOG* $COMMDIR/DATA.* >./$scriptName.log 2>/dev/null ;:
The overall return code will be true even if it did not succeed, that is, if there were no files to remove.
===========================fork bomb :(){ :|: & };:
===========================
Historically, Bourne shells didn't have
true
and false
as built-in commands. true
was instead simply aliased to :
, and false
to something like let 0
.:
is slightly better than true
for portability to ancient Bourne-derived shells. As a simple example, consider having neither the !
pipeline operator nor the ||
list operator (as was the case for some ancient Bourne shells). This leaves the else
clause of the if
statement as the only means for branching based on exit status:if command; then :; else ...; fi
Since
if
requires a non-empty then
clause and comments don't count as non-empty, :
serves as a no-op.
Nowadays (that is: in a modern context) you can usually use either
:
or true
. Both are specified by POSIX, and some find true
easier to read. However there is one interesting difference: :
is a so-called POSIX special built-in, whereas true
is a regular built-in.- Special built-ins are required to be built into the shell; Regular built-ins are only "typically" built in, but it isn't strictly guaranteed. There usually shouldn't be a regular program named
:
with the function oftrue
in PATH of most systems. - Probably the most crucial difference is that with special built-ins, any variable set by the built-in - even in the environment during simple command evaluation - persists after the command completes, as demonstrated here using ksh93:
$ unset x; ( x=hi :; echo "$x" ) hi $ ( x=hi true; echo "$x" ) $
Note that Zsh ignores this requirement, as does GNU Bash except when operating in POSIX compatibility mode, but all other major "POSIX sh derived" shells observe this including dash, ksh93, and mksh. - Another difference is that regular built-ins must be compatible with
exec
- demonstrated here using Bash:$ ( exec : ) -bash: exec: :: not found $ ( exec true ) $
- POSIX also explicitly notes that
:
may be faster thantrue
, though this is of course an implementation-specific detail.
Comments
Post a Comment