Code

pst3.c must not use nagiosplug/gnulib includes
[nagiosplug.git] / contrib / urlize.pl
index 8bb591f2e1c49e13ceef090c22b7668a8e267f2a..5acb52de8e522ff2c0979e606fdfafd06701af03 100644 (file)
@@ -5,7 +5,20 @@
 #
 # A wrapper around Nagios plugins that provides a URL link in the output
 #
-
+#
+# Pay close attention to quoting to ensure that the shell passes the
+# expected data to the plugin. For example, in:
+#
+#    urlize http://example.com/ check_http -H example.com -r 'two words'
+#
+# the shell will remove the single quotes and urlize will see:
+#
+#    urlize http://example.com/ check_http -H example.com -r two words
+#
+# You probably want:
+#
+#    urlize http://example.com/ \"check_http -H example.com -r 'two words'\"
+#
 ($#ARGV < 1) && die "Incorrect arguments";
 my $url = shift;