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