在命令末尾使用星号

时间:2015-04-29 12:18:40

标签: linux shell unix wildcard

我知道星号用在正则表达式中,但它在行尾有什么含义?

find . -type f | grep -sl 'word' *

我知道我可以使用

获得类似的结果
find . -type f | xargs grep -sl 'while'

1 个答案:

答案 0 :(得分:2)

末尾的星号*用于以字典顺序检查目录中的文件列表。