Unix清空文件保留访问权限的四个方法
时间:2010-07-23 来源:meteorm
1, cat /dev/null >data.xxx # File "data.xxx" now empty.
2, : > data.xxx # File "data.xxx" now empty.
3, echo > data.xxx # File "data.xxx" now empty.
4, > data.xxx # File "data.xxx" now empty.
:
null command. [colon] This is the shell equivalent of a "NOP" (no op, a do?nothing operation). It
may be considered a synonym for the shell builtin true. The ":" command is a itself a Bash builtin,
and its exit status is "true" (0).
may be considered a synonym for the shell builtin true. The ":" command is a itself a Bash builtin,
and its exit status is "true" (0).
相关阅读 更多 +