一些linux命令


linux根据一个文件提取另一个文件中的内容

#!/bin/bash

for in `cat file1` do grep $i file2 >> file3 done

相关