hawk
hawk copied to clipboard
Haskell text processor for the command-line
Swap can be written as: ``` > printf "1\t2" | hsl swap ``` or equivalently ``` > printf "1\t2" | hsl '\(x,y) -> (y,x)' ``` With implicit arguments, we should...
Continued from [issue 46](https://github.com/ssadler/hawk/issues/46).
automatically add `read . B.unpack` when the expression doesn't expect a `ByteString`
Continued from [issue 33](https://github.com/ssadler/hawk/issues/33).
Continued from [issue 42](https://github.com/ssadler/hawk/issues/42).
Would it make sense to support multiple input files? Today I had a use case in which that would have been helpful. I had used hawk to take the union...
Hawk --apply and --map modes are used to transform the input if I didn't get it wrong. I'd suggest to add a --filter command complementary to --map in order to...
The current code considers the uses at the top of this list to be more common than the uses at the bottom: 1. manipulate the input as a table ([[_]]...
Continued from [issue 25](https://github.com/ssadler/hawk/issues/25)