7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
|
#!/bin/sh
|
||
|
input=$1
|
||
|
while read -r str
|
||
|
do
|
||
|
[[ $(grep -c "$str" "$input") == 1 ]] && echo $str
|
||
|
done < "$input"
|