Antworten:
Sie müssen nicht überprüfen, ob es existiert. Die Überprüfungen auf Lese- und Schreibberechtigungen reichen aus:
Aus help test
einer Auswahl relevanter Tests:
-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.
So können Sie versuchen:
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 ]]
statt sein if [[ -r $FILE && -w $FILE ]]
?
&&
sind usw. erlaubt in[[
-r
und-w