]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - debian/10mail
Update to Standards-Version 3.9.5, no changes need
[mirror_smartmontools-debian.git] / debian / 10mail
CommitLineData
20259a08
GG
1#!/bin/bash -e
2
a94eb836 3# Send mail if /usr/bin/mail exists
66527000
GI
4if ! [ -x /usr/bin/mail ]; then
5 echo "Your system does not have /usr/bin/mail. Install the mailx or mailutils package"
6 exit 1
7fi
20259a08
GG
8
9input=$1
10shift
11
12/usr/bin/mail "$@" < $input
13