回答:
存在するかどうかを確認する必要はありません。読み取り権限と書き込み権限の確認で十分です。
からhelp test
、関連するテストの選択:
-a FILE True if file exists.
-e FILE True if file exists.
-f FILE True if file exists and is a regular file.
-r FILE True if file is readable by you.
-s FILE True if file exists and is not empty.
-w FILE True if the file is writable by you.
だからあなたは試すことができます:
FILE="/path/to/some/file"
if [[ -r $FILE && -w $FILE ]]
then
# do stuff
else
# file is either not readable or writable or both
fi
if [[ -r $FILE ]] && [[ -w $FILE ]]
代わりにすべきではありませんif [[ -r $FILE && -w $FILE ]]
か?
-r
や-w
オペレータ