-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Stream Editor in Haskell -- -- Haskell Stream Editor @package Hsed @version 0.2 -- | This module provides functions to execute the sed script module Hsed.Sed -- | Execute the sed script and print the output to ByteString execScript :: [FilePath] -> SedScript -> IO ByteString -- | Execute the sed script and print the result to stdout execScript_ :: [FilePath] -> SedScript -> IO () type SedScript = String