Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 354 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 354 Bytes

Aquamarine 🧜‍♀️

An eDSL for writing Fish shell scripts in Haskell

Examples

Functions

"hello" $> ["echo 'Hello'", "echo 'Bye'"]

generates:

function hello
    echo 'Hello'
    echo 'Bye'
end

Abbreviations

"yar" --> "yarn add react"

generates:

abbr -a -g yar yarn add react