I an learning perl by necessity
I have a If statement that has the form:
if ( condition1 || -f file path)
Condition1 is a simple condition. The -f after the || looks like a file command that is checking for the presence of a file. What does -f do in this situation?