in reply to Re: Strange File Not Found Error
in thread Strange File Not Found Error

The or operator bonds to the string "/software/...", not to the open command

That's the || operator, not the or operator:
open FILE, "doesnotexist" or print "or\n"; open FILE, "doesnotexist" || print "|| #1\n"; open(FILE, "doesnotexist") || print "|| #2\n";