find ./G18*/ -type f -iname "*info.txt" | xargs grep -irl "2019" |xargs grep -irl "csluo" > a.txt
find ./G18*/ -type f -iname "*info.txt" | xargs grep -irl "2018-[10-12]" |xargs grep -irl "csluo" > a.txt
find 相当于Windows的搜索功能,用来搜索文件。
grep 则用来搜索文件中的文字内容。