diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-03-02 15:00:53 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-03-02 15:00:53 +0000 |
commit | a7cdf0700b391e46e4f9d58d33251c7ee9ad5edc (patch) | |
tree | 694ababac1ba77461483977680bdb3d25a2b56bb /tools/diag | |
parent | 244b8ead7d31895ea1d7cfb075f4f7b33df35b0f (diff) | |
download | FreeBSD-src-a7cdf0700b391e46e4f9d58d33251c7ee9ad5edc.zip FreeBSD-src-a7cdf0700b391e46e4f9d58d33251c7ee9ad5edc.tar.gz |
Use double-quotes instead of single-quotes when displaying the usage
so that the shell interpolates $0.
PR: 17121
Submitted by: Peng HaiJie <phj@cn.FreeBSD.org>
Diffstat (limited to 'tools/diag')
-rwxr-xr-x | tools/diag/httpd-error/httpd-error | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/diag/httpd-error/httpd-error b/tools/diag/httpd-error/httpd-error index 43cb3c4..badce56 100755 --- a/tools/diag/httpd-error/httpd-error +++ b/tools/diag/httpd-error/httpd-error @@ -54,7 +54,7 @@ case "$mode" in uniq -c | sort -nr ;; - *) echo 'usage $0 {-host|-filehits|-user|-userhits} < error.log' >&2 + *) echo "usage $0 {-host|-filehits|-user|-userhits} < error.log" >&2 exit 1 ;; esac |