shellmet icon indicating copy to clipboard operation
shellmet copied to clipboard

🐚 Out of the shell solution for scripting in Haskell

Results 4 shellmet issues
Sort by recently updated
recently updated
newest added

When I need to call pipes I often end with the code like this: ```haskell callCommand $ "git diff " commit " --color=always | diff-highlight | less -rFX" ``` I...

enhancement

Resolves #28 Tests are failing locally but haven't figured why yet 😞

Similar to `$?` but should allow handling different exit statuses. ```haskell ($??) :: IO a -> (ExitCode -> IO a) -> IO a ```

enhancement