diff options
author | Joey Hess <joey@kitenet.net> | 2013-10-07 15:36:42 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-10-07 15:36:42 -0400 |
commit | 8eeb2b5acef05965e24d730dbc9070f49066bf80 (patch) | |
tree | 1a2a7ee679424c358d16def00536d31c8499883d /Utility/Misc.hs | |
parent | 730fa6910ad3feac0dc3f8d5c5f4f8a69a712565 (diff) |
basic data types for scheduled activities
Rather similar to crontab, although with a different format.
But with less emphasis on per-minute scheduling.
Also, supports weekly events, which cron makes too hard.
Also, has a duration field.
Diffstat (limited to 'Utility/Misc.hs')
-rw-r--r-- | Utility/Misc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Misc.hs b/Utility/Misc.hs index 804a9e487..a2c9c8184 100644 --- a/Utility/Misc.hs +++ b/Utility/Misc.hs @@ -29,7 +29,7 @@ hGetContentsStrict = hGetContents >=> \s -> length s `seq` return s readFileStrict :: FilePath -> IO String readFileStrict = readFile >=> \s -> length s `seq` return s -{- Like break, but the character matching the condition is not included +{- Like break, but the item matching the condition is not included - in the second result list. - - separate (== ':') "foo:bar" = ("foo", "bar") |