我知道星号用在正则表达式中,但是在行尾它是什么意思?
find . -type f | grep -sl 'word' *
我知道我可以使用获得类似的结果
find . -type f | xargs grep -sl 'while'
最佳答案
最后的星号*
用于按字典顺序检查目录中的文件列表。
关于linux - 命令末尾使用星号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29943556/