Skip to content

Commit

Permalink
Quick Save
Browse files Browse the repository at this point in the history
  • Loading branch information
rsdoiel committed Jun 6, 2023
1 parent 07ce4ea commit 11f82b7
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 42 deletions.
45 changes: 25 additions & 20 deletions INSTALL.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ <h1 id="installation">Installation</h1>
<p><em>scripttool</em> is a command line program run from a shell like
Bash. You can find compiled version in the <a
href="https://github.com/rsdoiel/scripttool/releases/latest">releases</a></p>
<h2 id="quick-install-via-curl">Quick install via curl</h2>
<p>This project can be installed via curl and sh for POSIX compatible
systems. Enter the following in your shell.</p>
<pre><code>curl https://rsdoiel.github.io/scripttool/installer.sh | sh</code></pre>
<h2 id="compiled-version">Compiled version</h2>
<p>This is generalized instructions for a release.</p>
<p>Compiled versions are available for Mac OS X (amd64 and M1 processor,
macos-amd64, macos-arm64), Linux (amd64 process, linux-amd64), Windows
(amd64 processor, windows-amd64), Rapsberry Pi (arm7 processor,
raspbian-arm7) and Pine64 (arm64 processor, linux-arm64)</p>
<p>Compiled versions are available for Mac OS (Intel and M1/M2
processor, macOS-x86_64, macOS-arm64), Linux (Intel process,
linux-x86_64), Windows (Intel processor, Windows-x86_64), Rapsberry Pi
OS (arm7 processor, RaspberryPiOS-arm7) and Pine64 (arm64 processor,
Linux-aarch64)</p>
<p>VERSION_NUMBER is a <a href="http:https://semver.org/">symantic version
number</a> (e.g. v0.1.2)</p>
<p>For all the released version go to the project page on Github and
Expand All @@ -54,27 +59,27 @@ <h2 id="compiled-version">Compiled version</h2>
<tbody>
<tr class="odd">
<td>Windows</td>
<td>scripttool-VERSION_NUMBER-windows-amd64.zip</td>
<td>scripttool-VERSION_NUMBER-Windows-x86_64.zip</td>
</tr>
<tr class="even">
<td>Mac OS X</td>
<td>scripttool-VERSION_NUMBER-macos-amd64.zip</td>
<td>Mac OS (Intel)</td>
<td>scripttool-VERSION_NUMBER-macOS-x86_64.zip</td>
</tr>
<tr class="odd">
<td>Mac OS X</td>
<td>scripttool-VERSION_NUMBER-macos-arm64.zip</td>
<td>Mac OS (M1,M2)</td>
<td>scripttool-VERSION_NUMBER-macOS-arm64.zip</td>
</tr>
<tr class="even">
<td>Linux/Intel</td>
<td>scripttool-VERSION_NUMBER-linux-amd64.zip</td>
<td>scripttool-VERSION_NUMBER-Linux-x86_64.zip</td>
</tr>
<tr class="odd">
<td>Raspbery Pi</td>
<td>scripttool-VERSION_NUMBER-raspbian-arm7.zip</td>
<td>scripttool-VERSION_NUMBER-RaspbianPiOS-arm7.zip</td>
</tr>
<tr class="even">
<td>Pine64</td>
<td>scripttool-VERSION_NUMBER-linux-arm64.zip</td>
<td>scripttool-VERSION_NUMBER-Linux-aarch64.zip</td>
</tr>
</tbody>
</table>
Expand All @@ -100,7 +105,7 @@ <h2 id="the-basic-recipe">The basic recipe</h2>
</ul></li>
<li>Test</li>
</ul>
<h3 id="mac-os-x">Mac OS X</h3>
<h3 id="mac-os">Mac OS</h3>
<ol type="1">
<li>Download the zip file</li>
<li>Unzip the zip file</li>
Expand All @@ -111,7 +116,7 @@ <h3 id="mac-os-x">Mac OS X</h3>
<p>Here’s an example of the commands run in the Terminal App after
downloading the zip file.</p>
<pre class="shell"><code> cd Downloads/
unzip scripttool-*-macos-amd64.zip
unzip scripttool-*-macOS-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
Expand All @@ -126,7 +131,7 @@ <h3 id="windows">Windows</h3>
<p>Here’s an example of the commands run in from the Bash shell on
Windows 10 after downloading the zip file.</p>
<pre class="shell"><code> cd Downloads/
unzip scripttool-*-windows-amd64.zip
unzip scripttool-*-Windows-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
Expand All @@ -141,13 +146,13 @@ <h3 id="linux">Linux</h3>
<p>Here’s an example of the commands run in from the Bash shell after
downloading the zip file.</p>
<pre class="shell"><code> cd Downloads/
unzip scripttool-*-linux-amd64.zip
unzip scripttool-*-Linux-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
scripttool -version</code></pre>
<h3 id="raspberry-pi">Raspberry Pi</h3>
<p>Released version is for a Raspberry Pi 2 or later use (i.e. requires
<h3 id="raspberry-pi-os">Raspberry Pi OS</h3>
<p>Released version is for a Raspberry Pi 3 or later use (i.e. requires
ARM 7 support).</p>
<ol type="1">
<li>Download the zip file</li>
Expand All @@ -158,7 +163,7 @@ <h3 id="raspberry-pi">Raspberry Pi</h3>
<p>Here’s an example of the commands run in from the Bash shell after
downloading the zip file.</p>
<pre class="shell"><code> cd Downloads/
unzip scripttool-*-raspbian-arm7.zip
unzip scripttool-*-RaspberryPiOS-arm7.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
Expand All @@ -168,7 +173,7 @@ <h2 id="compiling-from-source">Compiling from source</h2>
download the dependant packages as well as <em>scripttool</em>’s source
code.</p>
<pre class="shell"><code> go get -u github.com/rsdoiel/scripttool/...</code></pre>
<p>Or clone the repstory and then compile</p>
<p>Or clone the repository and then compile</p>
<pre class="shell"><code> cd
git clone https://github.com/rsdoiel/scripttool src/github.com/rsdoiel/scripttool
cd src/github.com/rsdoiel/scripttool
Expand Down
48 changes: 28 additions & 20 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,23 @@ Installation

*scripttool* is a command line program run from a shell like Bash. You can find compiled version in the [releases](https://github.com/rsdoiel/scripttool/releases/latest)

## Quick install via curl

This project can be installed via curl and sh for POSIX compatible systems.
Enter the following in your shell.

~~~
curl https://rsdoiel.github.io/scripttool/installer.sh | sh
~~~

Compiled version
----------------

This is generalized instructions for a release.

Compiled versions are available for Mac OS X (amd64 and M1 processor, macos-amd64, macos-arm64),
Linux (amd64 process, linux-amd64), Windows (amd64 processor, windows-amd64),
Rapsberry Pi (arm7 processor, raspbian-arm7) and Pine64 (arm64 processor, linux-arm64)

Compiled versions are available for Mac OS (Intel and M1/M2 processor, macOS-x86_64, macOS-arm64),
Linux (Intel process, linux-x86_64), Windows (Intel processor, Windows-x86_64),
Rapsberry Pi OS (arm7 processor, RaspberryPiOS-arm7) and Pine64 (arm64 processor, Linux-aarch64)

VERSION_NUMBER is a [symantic version number](http:https://semver.org/) (e.g. v0.1.2)

Expand All @@ -25,14 +33,14 @@ For all the released version go to the project page on Github and click latest r
> https://github.com/rsdoiel/scripttool/releases/latest

| Platform | Zip Filename |
|-------------|----------------------------------------|
| Windows | scripttool-VERSION_NUMBER-windows-amd64.zip |
| Mac OS X | scripttool-VERSION_NUMBER-macos-amd64.zip |
| Mac OS X | scripttool-VERSION_NUMBER-macos-arm64.zip |
| Linux/Intel | scripttool-VERSION_NUMBER-linux-amd64.zip |
| Raspbery Pi | scripttool-VERSION_NUMBER-raspbian-arm7.zip |
| Pine64 | scripttool-VERSION_NUMBER-linux-arm64.zip |
| Platform | Zip Filename |
|----------------|-------------------------------------------------|
| Windows | scripttool-VERSION_NUMBER-Windows-x86_64.zip |
| Mac OS (Intel) | scripttool-VERSION_NUMBER-macOS-x86_64.zip |
| Mac OS (M1,M2) | scripttool-VERSION_NUMBER-macOS-arm64.zip |
| Linux/Intel | scripttool-VERSION_NUMBER-Linux-x86_64.zip |
| Raspbery Pi | scripttool-VERSION_NUMBER-RaspbianPiOS-arm7.zip |
| Pine64 | scripttool-VERSION_NUMBER-Linux-aarch64.zip |


The basic recipe
Expand All @@ -48,7 +56,7 @@ The basic recipe
+ Test


### Mac OS X
### Mac OS

1. Download the zip file
2. Unzip the zip file
Expand All @@ -61,7 +69,7 @@ zip file.

```shell
cd Downloads/
unzip scripttool-*-macos-amd64.zip
unzip scripttool-*-macOS-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
Expand All @@ -80,7 +88,7 @@ downloading the zip file.

```shell
cd Downloads/
unzip scripttool-*-windows-amd64.zip
unzip scripttool-*-Windows-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
Expand All @@ -100,17 +108,17 @@ downloading the zip file.

```shell
cd Downloads/
unzip scripttool-*-linux-amd64.zip
unzip scripttool-*-Linux-x86_64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
scripttool -version
```


### Raspberry Pi
### Raspberry Pi OS

Released version is for a Raspberry Pi 2 or later use (i.e. requires ARM 7 support).
Released version is for a Raspberry Pi 3 or later use (i.e. requires ARM 7 support).

1. Download the zip file
2. Unzip the zip file
Expand All @@ -122,7 +130,7 @@ downloading the zip file.

```shell
cd Downloads/
unzip scripttool-*-raspbian-arm7.zip
unzip scripttool-*-RaspberryPiOS-arm7.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
Expand All @@ -140,7 +148,7 @@ as well as _scripttool_'s source code.
go get -u github.com/rsdoiel/scripttool/...
```

Or clone the repstory and then compile
Or clone the repository and then compile

```shell
cd
Expand Down
Binary file added pagefind/fragment/en_ff82e8e.pf_fragment
Binary file not shown.
Binary file added pagefind/index/en_77cbdc0.pf_index
Binary file not shown.
2 changes: 1 addition & 1 deletion pagefind/pagefind-entry.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"0.12.0","languages":{"en":{"hash":"en_d298c8931c","wasm":"en","page_count":34}}}
{"version":"0.12.0","languages":{"en":{"hash":"en_8d21f838a9","wasm":"en","page_count":34}}}
Binary file added pagefind/pagefind.en_8d21f838a9.pf_meta
Binary file not shown.
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const (
ReleaseDate = "2023-06-05"

// ReleaseHash, the Git hash when version.go was generated
ReleaseHash = "cff3d53"
ReleaseHash = "07ce4ea"

LicenseText = `
All rights reserved.
Expand Down

0 comments on commit 11f82b7

Please sign in to comment.