Tidying up

This commit is contained in:
2020-01-20 20:52:02 +09:00
parent c4283fe8a4
commit e473cdafc3
4 changed files with 10 additions and 7 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#! /bin/bash
# A convenience script that will download the ZX installer, unpack it, and clean up.
# For maximum portability this script uses the gzipped package version.
version=0.9.1
zx="zx-$version"
tarball="$zx.tar.gz"
wget -nv "https://zxq9.com/projects/zomp/$tarball"
tar -zxf "$tarball"
cd "$zx"
chmod +x install
./install
cd ..
rm -rf "$zx"
rm "$tarball"
rm -- "$0"