in reply to Re^2: PERL Sendmail Problem
in thread PERL Sendmail Problem
You can find out where sendmail is, information about it including whether you have permission to run it, and similar information about /usr/lib/sendmail, with commands like these:
$ which sendmail /usr/sbin/sendmail $ ls -l /usr/sbin/sendmail -rwxr-xr-x 1 root wheel 243824 Jan 13 18:14 /usr/sbin/sendmail $ ls -l /usr/lib/sendmail ls: cannot access '/usr/lib/sendmail': No such file or directory
You can get similar information by writing a script that uses the file test operators.
— Ken
|
|---|