Skip to content

Instantly share code, notes, and snippets.

Created July 5, 2012 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3051620 to your computer and use it in GitHub Desktop.
Save anonymous/3051620 to your computer and use it in GitHub Desktop.
import Control.Monad (forever, (>=>))
import Control.Monad.IO.Class (MonadIO, liftIO)
import Data.Conduit
import System.Posix.Temp (mkstemp)
import System.IO (Handle)
tempfiles :: MonadIO m => String -> Source m (FilePath, Handle)
tempfiles = forever . (liftIO . mkstemp >=> yield)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment