2013-12-17 76 views

回答

9
while read vl; do 
    grep "^$vl" Table_S4.tab || printf "\n" 
done < 1 

如果grep沒有找到匹配,printf命令將運行並輸出一個空行。

相關問題