Indempotent script to generate cron from a string
Hello, I’ve just made this script to generate an indempotent crontab for a given string #!/bin/bashif [ $# -lt 1 ]then echo « Syntax error : at least one argument is needed » echo « Syntax: $0 string [ -hmbf ] » echo « -h : display only the hour » echo « -m : display only the minute » echo […]