shellwords-0.1.4.0: src/ShellWords.hs
module ShellWords
( -- * Splitting shell words
parse
, parseText
-- * Quoting for shells
, quote
, join
-- * Low-level parser
, Parser
, runParser
, parser
) where
import ShellWords.Parse
( Parser
, parse
, parseText
, parser
, runParser
)
import ShellWords.Quote
( join
, quote
)