修改脚本以从条件中删除else

时间:2016-10-11 22:05:28

标签: unix grep aix

我试图使用while循环从一个文件中找到几个关键字,如果它们存在与否则检查另一个文件。如果不是,则应将其写入另一个文件中。 以下是我的代码

while read -r line; do
if grep -q -e "$line" $file_name; then
        echo "character found"
else
    echo "$line" >> notfound.txt
fi  
done  < result.txt`

我觉得整个if条件可以通过排除else部分以及echo&#34;找到的字符来简化&#34;因为有很多人物。请帮忙删除它。我试过-v但不幸的是没有工作。

也可以使用while循环从第3行开始,然后结束2行

提前致谢!

3 个答案:

答案 0 :(得分:1)

当然可以在一行中完成,通过在执行时检查命令的返回码,参见bash, exit-codes

#!/bin/bash

while read -r line
do

   # On successful search 'grep' returns code '0', negating it for the
   # unsuccessful case to return a 'true' condition

   ! grep -q -e "$line" "$file_name"  && echo "$line" >> notfound.txt

done <result.txt

答案 1 :(得分:0)

忘掉它;使用comm(1)它有什么好处。例如:

#!/usr/local/bin/bash

cat >needles <<DONE
p1
n1
p2
n2
DONE

cat >haystack <<DONE
p3
p2
p1
DONE

comm -23 <(sort -u needles) <(sort -u haystack)

答案 2 :(得分:0)

假设$filename是一个任意文本文件,而result.txt是一个包含单词列表的文件,每行一个。

#!/bin/bash

# 1. get the list of words found in the file, store in an array
mapfile -t found < <(grep -owFf result.txt "$filename" | sort -u)

# 2. get the list of words not found
grep -vxFf <(printf "%s\n" "${found[@]}") result.txt