bash2bb
bash2bb copied to clipboard
https://gist.github.com/tripleo1/1f464d691a9c51ff70619baf0d0b0339 Alpha release: - Works for me - `bash2bb` does not translate all constructs
Printing with echo: ```sh echo -n foo echo bar ``` Gets translated as (which works correctly): ```clj (shell "echo" "-n" "foo") (shell "echo" "bar") ``` We could make the output...
When wanting to read user input with: ```sh echo -n "Your name: " read name echo Hello "$name" ``` Gets translated as following which does not work because `read` is...