ZeroIntensity / controlmanual

Advanced command interpreter.

Repository from Github https://github.comZeroIntensity/controlmanualRepository from Github https://github.comZeroIntensity/controlmanual

Control Manual

Alternative command interpreter

What is this?

This is an alternative to traditional command interpreters. I'll put more here as this project progresses, but essentially heres what it's supposed to look like:

# Bash
if [[ $something -eq 0 ]]; then
    echo "Something happened"
else
    echo "Something else happened"
fi

ls | grep myfile.txt
# Control Manual
if something == 0 {
    echo "Something happened"
} else {
    echo "Something else happened"
}

match ls() "myfile.txt"

Installation

Since this is still a heavy WIP, there isn't really any installation process. However, you can clone the repository and build, like so:

$ git clone https://github.com/ZeroIntensity/controlmanual
$ cd controlmanual
$ ./build.sh
$ gcc my_impl.c -Wall -l:libcontrolmanual.so -I include

About

Advanced command interpreter.

License:MIT License


Languages

Language:C 81.1%Language:CSS 8.9%Language:HTML 8.4%Language:Python 1.3%Language:Shell 0.2%Language:JavaScript 0.1%