だから私はを使用するif elseステートメントを作成しようとしています。 2つのファイルがあり、それをhiとhelloという変数に保存するとしますdiff -q
。このコードがありますhi.txt
hello.txt
if [ diff -q $hi $hello ]; then
echo "these files are the same"
else
echo "these files are not the same"
fi
含まれている内容が何であれhi.txt
、hello.txt
内容がまったく同じであっても同じです。エラーメッセージが表示されます。
./(name of script) line (line with [diff -q hi hello]) [: too many arguments.
私の文法のどの部分が間違っていますか?
ベストアンサー1
- 括弧内にdiffを入れていません。
- 変数を使用する構文は次のとおりです。
$hi
したがって、生成されたスクリプトは次のようになります。
if diff -q $hi $hello; then
echo "these files are the same"
else
echo "these files are not the same"
fi