diff options
author | brian <brian@FreeBSD.org> | 2000-09-20 19:59:44 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-09-20 19:59:44 +0000 |
commit | 67b1b035aaaf584d26a90553e435b9cb2f923e47 (patch) | |
tree | a876109e1a61230d951e279fb05982abee54e643 /usr.sbin/periodic/periodic.sh | |
parent | 569d0d33affa5f5206ff3ee1013a7f451d98f738 (diff) | |
download | FreeBSD-src-67b1b035aaaf584d26a90553e435b9cb2f923e47.zip FreeBSD-src-67b1b035aaaf584d26a90553e435b9cb2f923e47.tar.gz |
Fix a typo
Spotted by: Manfred Antar <null@pozo.com>
Diffstat (limited to 'usr.sbin/periodic/periodic.sh')
-rw-r--r-- | usr.sbin/periodic/periodic.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/periodic/periodic.sh b/usr.sbin/periodic/periodic.sh index 35772ef..cd152d8 100644 --- a/usr.sbin/periodic/periodic.sh +++ b/usr.sbin/periodic/periodic.sh @@ -39,7 +39,7 @@ do eval output=\$${arg##*/}_output case "$output" in /*) pipe="cat >>$output";; - "") pipe=cat + "") pipe=cat;; *) pipe="mail -s '$host ${arg##*/} run output' $output";; esac |