Re: Symbolic link to mhmail
Robert Elz <[email protected]>
| Newsgroups | gmane.mail.nmh.devel |
|---|---|
| Message-ID | <[email protected]> |
Date: Tue, 26 Mar 2024 15:59:35 +0100
From: Thomas Dupond <[email protected]>
Message-ID: <[email protected]>
| I wanted to know how could I make a symbolic link to mhmail from
| /usr/bin/mailx.
Try not doing that. Instead make mailx into a script
(with just one meaninful line):
#! /bin/sh
exec /usr/bin/mh/mhmail "$@"
Of course, turn on 'x' permission.
kre