【发布时间】:2014-02-04 23:26:12
【问题描述】:
这是一个相对简单的命令,所以如果存在重复并且有人可以推荐我,我很抱歉,我将删除/关闭这个问题。
查找手册页
find . -type f -exec file '{}' \;
Runs 'file' on every file in or below the current directory. Notice that the braces are enclosed in single quote marks to protect them from interpretation
as shell script punctuation. The semicolon is similarly protected by the use of a backslash, though ';' could have been used in that case also.
我不明白\; 的表示法。这到底是什么?
【问题讨论】: