# cat 1.file
abc
# cat 2.file
cdf
#
# expr `grep abc 1.file > /dev/null ; echo $?` + `grep cdf 2.file > /dev/null ; echo $?`  ★
0
#
# hoge=`expr `grep abc 1.file > /dev/null ; echo $?` + `grep cdf 2.file > /dev/null ; echo $?`` ●
expr: オペランドがありません
Try 'expr --help' for more information.
bash: abc: コマンドが見つかりませんでした...
bash: +: コマンドが見つかりませんでした...
0
#

★のコマンドの結果の数字をを変数に入れたいのですが、
●とするとエラーになります。

どうしたらうまくいくのでしょうか。
よろしくお願いします。