leonard112 / OctaneScript

A scripting langauge that reads and writes like spoken language. (Currently in early alpha stages)

Home Page:https://leonard112.github.io/OctaneScript/

Repository from Github https://github.comleonard112/OctaneScriptRepository from Github https://github.comleonard112/OctaneScript

OctaneScript Build Status Download OctaneScript

OctaneScript Logo

OctaneScript is a scripting language built using Python. ⚠️ (Currently in Alpha)

⚠️ Note that this language is not being developed for any customer or particular use. This lanauge is being developed for fun. Feel free to use this software for whatever you wish, but ensure that you review this software's license (MIT) if you consider using this software for anything more than exploration and learning.

Feel free to open an issue if you find any bugs or if you have any feature suggestions.

 

 

Linux Installation (amd64 only)

Debian

This package can be installed on any 64 bit Debian based Linux distriubtion including but not limited to Ubuntu and Kali Linux.

$ curl -O <OctaneScript Debian download URL>
  • Install package.
$ sudo dpkg -i octanescript-<version>-linux-amd64.deb
  • Smoke test.
$ os --version

Tar

These binaries should work for most 64 bit Linux distributions.

  • Download Tar file from the OctaneScript GitHub Release page.
$ curl -O <OctaneScript Tar download URL>
  • Create a dedicated folder for the binaries to live.
$ sudo mkdir /opt/octanescript
  • Extract the contents ot the tar file to the folder where you want the binaries to live.
$ sudo tar -xzvf octanescript-<version>-linux-amd64.tgz --directory /opt/octanescript/
  • Append the following line to .bashrc to add /opt/octanescript to the PATH environment variable.
PATH=/opt/octanescript:$PATH
  • Smoke test.
$ os --version

Before Installing Octane on Windows, ensure that you have Python installed and Pip package manager installed before you begin. Also ensure that you are running cmd or Powershell as Administrator.

Note that currently, Octane has to be built on Windows from source.

 

Windows Installation (amd64 only)

Installer

The binaries in this Windows Installer should work on any 64 bit Windows machine.

  • Download Windows Installer from the OctaneScript GitHub Release page and Run it.
  • Smoke test.
> os --version

Zip

These binaries should work on any 64 bit Windows machine.

⚠️ Ensure that you run Windows PowerShell as Administrator.

  • Download Zip file from the OctaneScript GitHub Release page.
> curl -O <OctaneScript Zip download URL>
  • Create a dedicated folder for the binaries to live.
> mkdir "C:\Program Files\OctaneScript" 
  • Extract the contents ot the zip file to the folder where you want the binaries to live.
> Expand-Archive -Path octanescript-<version>-windows-amd64.zip -DestinationPath "C:\Program Files\OctaneScript"
> os --version

About

A scripting langauge that reads and writes like spoken language. (Currently in early alpha stages)

https://leonard112.github.io/OctaneScript/

License:MIT License


Languages

Language:Python 98.0%Language:Shell 1.3%Language:NSIS 0.7%