通过linux进行文件过滤
先通过 find 命令查找文件,然后对文件中内容,按照关键字进行过滤
1 | find /mnt/pc-html/ -maxdepth 1 -name 'vpcspider01_data_config_*' -exec grep -Eonl 'c-.html' {} \; |
先通过 find 命令查找文件,然后对文件中内容,按照关键字进行过滤
1 | find /mnt/pc-html/ -maxdepth 1 -name 'vpcspider01_data_config_*' -exec grep -Eonl 'c-.html' {} \; |