github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/godoc.go (about)

     1  // Murex is a cross-platform shell like Bash but with greater emphasis on writing safe shell scripts and powerful one-liners while maintaining readability.
     2  //
     3  // A quick breakdown of the project structure:
     4  //     * app is for hardcoded strings like copyright dates
     5  //     * builtins contains all the plugins exposed via the languages runtime
     6  //     * config is APIs for the runtime config
     7  //     * debug is debugging APIs
     8  //     * docs is the murex online documentation. Contents in here are autogenerated and some of this will be compiled into the murex executable.
     9  //     * examples (does not contain Go code) is murex shell script examples
    10  //     * gen is the templates for docgen
    11  //     * lang contains the language parsers and runtime environment
    12  //     * shell is the code for the interactive shell
    13  //     * test is the testing framework
    14  //     * utils directory is tools used exclusively within this Go source code
    15  package main