summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--contrib/urlize.pl15
1 files changed, 14 insertions, 1 deletions
diff --git a/contrib/urlize.pl b/contrib/urlize.pl
index 8bb591f..5acb52d 100644
--- a/contrib/urlize.pl
+++ b/contrib/urlize.pl
@@ -5,7 +5,20 @@
5# 5#
6# A wrapper around Nagios plugins that provides a URL link in the output 6# A wrapper around Nagios plugins that provides a URL link in the output
7# 7#
8 8#
9# Pay close attention to quoting to ensure that the shell passes the
10# expected data to the plugin. For example, in:
11#
12# urlize http://example.com/ check_http -H example.com -r 'two words'
13#
14# the shell will remove the single quotes and urlize will see:
15#
16# urlize http://example.com/ check_http -H example.com -r two words
17#
18# You probably want:
19#
20# urlize http://example.com/ \"check_http -H example.com -r 'two words'\"
21#
9($#ARGV < 1) && die "Incorrect arguments"; 22($#ARGV < 1) && die "Incorrect arguments";
10my $url = shift; 23my $url = shift;
11 24