2014-04-10 24 views

回答

1
while read string 
do 
    if ! grep -q "$string" "$other_file" 
    then echo "$string" 
    fi 
done < "$file" 
相关问题