true命令的作用是定向清空文件内容而不删除文件。
在有些shell与bash下true是个内建命令,与只设置退出码为0。
**语法格式:** true [文件]
**参考实例**
清除指定的文件内容:
```
[root@anycode ~]# true > linuxcool.log
```
bush下true是命令演示:
```
[root@anycode ~]# type -a true
true is a shell builtin
true is /bin/true
```
输出一个返回值:
```
[root@anycode ~]# true; echo $?
0
```