ファイルがあるとしましょう。
batman;
robin;
superman;
password = "";
wonderwoman
green lantern
password
プレゼントがあるかどうかを確認したい場合は、""
例を挙げましょう。
ironman;
hulk;
spiderman;
password = "tonyStark";
black widow
hawkeye
ファイル間にパスワードがあるかどうかを確認できますか""
?
これが私が今まで持っているものです
x=$(grep -icE "password=\"[a-zA-Z0-9]\"" file.txt)
if [ x -gt 0 ]; then
echo "There is a password"
fi
ベストアンサー1
if grep -q 'password = "[^"]' filename; then
echo "password exists"
else
echo "no password"
fi