shorthand is a command line program 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/shorthand/installer.sh | sh
This is generalized instructions for a release.
Compiled versions are available for Mac OS X (Intel processor, macOS-x86_64), 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/shorthand/releases/latest
Platform | Zip Filename |
---|---|
Windows | shorthand-VERSION_NUMBER-Windows-x86_64.zip |
Mac OS X | shorthand-VERSION_NUMBER-macOS-x86_64.zip |
Linux/Intel | shorthand-VERSION_NUMBER-Linux-x86_64.zip |
Raspbery Pi | shorthand-VERSION_NUMBER-RaspberryPiOS-arm7.zip |
Pine64 | shorthand-VERSION_NUMBER-Linux-aarch64.zip |
Here’s an example of the commands run in the Terminal App after downloading the zip file in to your “Downloads” folder.
cd
unzip Downloads/shorthand-*-macOS-x86_64.zip bin/*
export PATH="$HOME/bin:$PATH"
shorthand -version
Here’s an example of the commands run in from the Bash shell on Windows 10 after downloading the zip file.
cd
unzip Downloads/shorthand-*-Windows-x86_64.zip bin/*
export PATH="$HOME/bin:$PATH"
shorthand -version
Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd
unzip Downloads/shorthand-*-Linux-x86_64.zip bin/*
export PATH="$HOME/bin:$PATH"
shorthand -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
unzip Downloads/shorthand-*-RaspberryPiOS-arm7.zip bin/*
export PATH="$HOME/bin:$PATH"
shorthand -version
shorthand is “go gettable”. Use the “go get” command to download the dependant packages as well as shorthand’s source code.
go get -u github.com/rsdoiel/shorthand/...
Or clone the repository and then compile
cd
git clone https://github.com/rsdoiel/shorthand src/github.com/rsdoiel/shorthand
cd src/github.com/rsdoiel/shorthand
make
make test
make install