start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| # You must accept the Oracle JDK License Update | |
| # https://www.oracle.com/java/technologies/javase-downloads.html | |
| # usage: get_oracle_jdk_x64.sh <jdk_version> <platform> <ext> | |
| # jdk_version: 14 | |
| # platform: linux or osx or windows | |
| # ext: rpm or dmg or tar.gz or exec | |
| jdk_version=${1:-14} |
| -- -- | |
| -- gist client - tuogex | |
| -- -- | |
| JSON = (loadfile "json.lua")() | |
| --helper functions | |
| function printHelp() | |
| print("Gist client by tuogex") | |
| print("-i <gistId> - Gets information about a gist") | |
| print("-if <gistId> <gistFileName> - Gets information about a single file in the gist") |