-
is a Haskell library with operations for piping data through a pipeline of processes. Example: MD5 Let’s say you want to quickly get the MD5 sum of a string. You know you have the md5sum binary on your system, so you don’t bother installing an additional library to do it. Instead you call the md5sum executable, writing a function which might look like the following: import System.IO import System.Process getMD5 :: String -> IO String getMD5 s = do (input, output, _, pid) IO String get (Read Full Article)
Related Articles
- Hashell :: Home Page
- also written by juhp
- Haskal
- also written by juhp
- Supercompilation for Haskell
- also mentions Haskell
- Hoogle - Search
- also written by juhp
- PackagingDrafts/Haskell - Fedora Project Wiki
- also written by juhp
- H4Sh
- also written by juhp





