用linux的xargs命令,把前一个命令的结果当作后一个命令的参数,比如要删除redis中所有doctor_开头的key,我们可以这么写:
redis-cli KEYS “newsearch_*” | xargs redis-cli DEL