tvl-depot/scratch/groceries/export.hs
William Carroll 25a45fb222 Add export script for groceries
At this point, I may be taking this idea too far, but what the heck?
2020-06-27 14:06:59 +01:00

11 lines
254 B
Haskell

module Main where
import Data.Function ((&))
import qualified Data.List as L
-- | Run this to export the grocery list.
main :: IO ()
main = do
x <- readFile "./list.txt"
x & lines & filter (not . L.isPrefixOf "- 0x") & unlines & putStrLn
pure ()