Skip to content

Instantly share code, notes, and snippets.

@jackyshan
Created December 5, 2016 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackyshan/da243c033a186d685cafcc5029b2af75 to your computer and use it in GitHub Desktop.
Save jackyshan/da243c033a186d685cafcc5029b2af75 to your computer and use it in GitHub Desktop.
shell遍历目录文件导入qq邮箱
#!bin/sh
for file in ./*
do
if test -f $file
then
grep "@qq.com" $file >> xxx_qq_all.txt
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment