From 572eb9699d0e041e5d7c7006366c4e3ecb849dc5 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Thu, 24 Dec 2015 15:59:20 +0100
Subject: [PATCH] Fix shell escaping bug in crontab installation guide.

---
 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
index 24f1892..dba72ac 100644
--- a/README
+++ b/README
@@ -16,4 +16,4 @@ pingmailrc.example file for more details.
 To install as an hourly cronjob, define $path_to_pingmail_script_file, then do:
 
 line='0 * * * * '$path_to_pingmail_script_file' check'
-(crontab -l; echo $line) | crontab -
+(crontab -l; echo "$line") | crontab -
-- 
2.30.2