]> git.armaanb.net Git - bin.git/blobdiff - crontab-argh.c
signal-finder: add script
[bin.git] / crontab-argh.c
old mode 100755 (executable)
new mode 100644 (file)
index 504073a..3fc7e3e
@@ -1,5 +1,6 @@
-// stops you from accidentally running crontab -r
-// alias this to crontab
+/* Stops you from accidentally running crontab -r. alias this to crontab.
+        Alternatively, if you are on a GNU system, you can just alias "crontab -r" to
+        "crontab -ri", but this isn't POSIX. */
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -25,5 +26,4 @@ int main(int argc, char *argv[]) {
                }
        }
        system(arg);
-       return 0;
 }