in reply to Re: Re: -z file test operator
in thread -z file test operator
Don't use backticks like `BADSYMS.out` - instead use normal single or double quotes:
The backticks try to execute the file which is not what you want.if (-z "BADSYMS.out") { # do something }
-- Hofmator
|
|---|