답변:
명령은 :>
단지 아닙니다 :
. bash (및 아마도 다른 쉘)에서는 내장 된 no-op 명령입니다. >
파일로 리디렉션 출력 (먼저 절단). 이후 :
에는 출력이 없습니다, 명령 행의 최종 결과는 : > file.log
단지하게 file.log
제로 길이.
내 로컬 bash
맨 페이지에서 :
: [arguments]
No effect; the command does nothing beyond expanding arguments
and performing any specified redirections. A zero exit code is
returned.