2
Qual é a diferença entre: e true?
Em bash: $ type : : is a shell builtin $ type true true is a shell builtin Parece que eles são iguais, mas não dão o mesmo rastreio do sistema: $ strace : strace: :: command not found $ strace true execve("/bin/true", ["true"], [/* 82 vars */]) = 0 …