You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: "is_file" is not "-f" because "-f" is not the opposite of "-d".
"-f" means "plain file", excluding symlinks, devices, etc. that often
can be read just like files.
This isn't quite correct because -f symlink_to_file returns true.
Suggest changing the wording to:
"-f" means a plain file (or a symlink to a plain file), but not devices, etc. that often
can be read just like files.
The text was updated successfully, but these errors were encountered:
Current docs say
This isn't quite correct because
-f symlink_to_file
returns true.Suggest changing the wording to:
The text was updated successfully, but these errors were encountered: