1
shiny PRO grep -r "aaa" ./*
|
2
knightdf Mar 17, 2017
find /xxx/xx -type f |xargs grep -n "aaa"
-n 输出行号 |
3
ic3z Mar 19, 2017 via Android
ag 命令
|