i'm using something like this to determine if a file exists in Perl:
if(-e "myfile")
how do I do in an .sh file without getting a "No such file or directory" output like I get when I use the "ls" command?
if(-e "myfile")
how do I do in an .sh file without getting a "No such file or directory" output like I get when I use the "ls" command?

Comment