美文网首页
2019-05-12提取

2019-05-12提取

作者: YX_Andrew | 来源:发表于2019-05-12 14:26 被阅读0次

根据一串ID批量提取另外一个文件的指定行
书写linux代码进行提取

#!/bin/bash

cat -A list.txt | while read id;
do
    id=`echo $id| cut -d"^" -f0`
    grep $id file >> resut.txt
done

相关文章

网友评论

      本文标题:2019-05-12提取

      本文链接:https://www.haomeiwen.com/subject/zlscaqtx.html