标签: linux shell unix wildcard
我知道星号用在正则表达式中,但它在行尾有什么含义?
find . -type f | grep -sl 'word' *
我知道我可以使用
find . -type f | xargs grep -sl 'while'
答案 0 :(得分:2)
末尾的星号*用于以字典顺序检查目录中的文件列表。
*