stngo is a set of command line programs run from a shell like Bash. You can find compiled version in the releases
The following curl command can be used to run the installer on most
POSIX systems. Programs are installed into $HOME/bin
.
$HOME/bin
will need to be in your path. From a shell (or
terminal session) run the following.
curl https://rsdoiel.github.io/stngo/installer.sh | sh
This is generalized instructions for a release.
Compiled versions are available for Mac OS X (Intel and M1 processors, macOS-x86_64, macOS-arm64), Linux (Intel process, Linux-x86_64), Windows (Intel processor, Windows-x86_64), Rapsberry Pi (arm7 processor, RaspberryPiOS-arm7) and Pine64 (arm64 processor, Linux-aarch64)
VERSION_NUMBER is a symantic version number (e.g. v0.1.2)
For all the released version go to the project page on Github and click latest release
https://github.com/rsdoiel/stngo/releases/latest
Platform | Zip Filename |
---|---|
Windows | stn-VERSION_NUMBER-Windows-x86_64.zip |
Mac OS X | stn-VERSION_NUMBER-macOS-x86_64.zip |
Mac OS X | stn-VERSION_NUMBER-macos-arm64.zip |
Linux/Intel | stn-VERSION_NUMBER-Linux-x86_64.zip |
Raspbery Pi | stn-VERSION_NUMBER-RaspberryPiOS-arm7.zip |
Pine64 | stn-VERSION_NUMBER-Linux-aarch64.zip |
Here’s an example of the commands run in the Terminal App after downloading the zip file.
cd Downloads/
unzip stngo-*-macOS-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
stnparse -version
Here’s an example of the commands run in from the Bash shell on Windows 10 after downloading the zip file.
cd Downloads/
unzip stngo-*-Windows-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
stnparse -version
Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd Downloads/
unzip stngo-*-Linux-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
stnparse -version
Released version is for a Raspberry Pi 2 or later use (i.e. requires ARM 7 support).
Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd Downloads/
unzip stngo-*-RaspberryPiOS-arm7.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
stnparse -version
stngo is “go gettable”. Use the “go get” command to download the dependant packages as well as stngo’s source code.
go get -u github.com/rsdoiel/stngo/...
Or clone the repstory and then compile
cd
git clone https://github.com/rsdoiel/stngo src/github.com/rsdoiel/stngo
cd src/github.com/rsdoiel/stngo
make
make test
make install