├── LICENSE ├── README.md ├── base64url.sh ├── generate_thumbnails_for_current_directory.sh ├── get_github_repos.sh ├── get_my_external_ip ├── get_server_ssl_cert.sh ├── list_av_devices.sh ├── mac_battery_remaining.sh ├── ngrok ├── info.txt ├── ngrok-2.2.8-linux-arm64.zip ├── ngrok-stable-darwin-386.zip ├── ngrok-stable-linux-386.zip ├── ngrok-stable-linux-amd64.zip ├── ngrok-stable-linux-arm.zip ├── ngrok-stable-windows-386.zip └── ngrok-stable-windows-amd64.zip ├── photo-git-archiver.sh ├── pretty_json.sh ├── random_number_range.sh ├── selget ├── serveo.md ├── serveo ├── info.txt ├── serveo-386.exe ├── serveo-amd64.exe ├── serveo-darwin-386 ├── serveo-darwin-amd64 ├── serveo-linux-386 ├── serveo-linux-amd64 └── serveo-linux-arm64 ├── shuffle_string.py ├── squidman ├── SquidMan3.8.dmg └── info.txt ├── ssh.exe ├── urldecode.sh ├── urlencode.sh └── utime.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Uli's Shell Tools 2 | 3 | -------------------------------------------------------------------------------- /base64url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/base64url.sh -------------------------------------------------------------------------------- /generate_thumbnails_for_current_directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/generate_thumbnails_for_current_directory.sh -------------------------------------------------------------------------------- /get_github_repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/get_github_repos.sh -------------------------------------------------------------------------------- /get_my_external_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/get_my_external_ip -------------------------------------------------------------------------------- /get_server_ssl_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/get_server_ssl_cert.sh -------------------------------------------------------------------------------- /list_av_devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/list_av_devices.sh -------------------------------------------------------------------------------- /mac_battery_remaining.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/mac_battery_remaining.sh -------------------------------------------------------------------------------- /ngrok/info.txt: -------------------------------------------------------------------------------- 1 | ngrok 2 | -------------------------------------------------------------------------------- /ngrok/ngrok-2.2.8-linux-arm64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-2.2.8-linux-arm64.zip -------------------------------------------------------------------------------- /ngrok/ngrok-stable-darwin-386.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-stable-darwin-386.zip -------------------------------------------------------------------------------- /ngrok/ngrok-stable-linux-386.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-stable-linux-386.zip -------------------------------------------------------------------------------- /ngrok/ngrok-stable-linux-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-stable-linux-amd64.zip -------------------------------------------------------------------------------- /ngrok/ngrok-stable-linux-arm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-stable-linux-arm.zip -------------------------------------------------------------------------------- /ngrok/ngrok-stable-windows-386.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-stable-windows-386.zip -------------------------------------------------------------------------------- /ngrok/ngrok-stable-windows-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ngrok/ngrok-stable-windows-amd64.zip -------------------------------------------------------------------------------- /photo-git-archiver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/photo-git-archiver.sh -------------------------------------------------------------------------------- /pretty_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/pretty_json.sh -------------------------------------------------------------------------------- /random_number_range.sh: -------------------------------------------------------------------------------- 1 | # gives a random number between $1 and $2 2 | shuf -i ${1}-${2} -n 1 3 | -------------------------------------------------------------------------------- /selget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/selget -------------------------------------------------------------------------------- /serveo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo.md -------------------------------------------------------------------------------- /serveo/info.txt: -------------------------------------------------------------------------------- 1 | binaries 2 | -------------------------------------------------------------------------------- /serveo/serveo-386.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-386.exe -------------------------------------------------------------------------------- /serveo/serveo-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-amd64.exe -------------------------------------------------------------------------------- /serveo/serveo-darwin-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-darwin-386 -------------------------------------------------------------------------------- /serveo/serveo-darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-darwin-amd64 -------------------------------------------------------------------------------- /serveo/serveo-linux-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-linux-386 -------------------------------------------------------------------------------- /serveo/serveo-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-linux-amd64 -------------------------------------------------------------------------------- /serveo/serveo-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/serveo/serveo-linux-arm64 -------------------------------------------------------------------------------- /shuffle_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/shuffle_string.py -------------------------------------------------------------------------------- /squidman/SquidMan3.8.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/squidman/SquidMan3.8.dmg -------------------------------------------------------------------------------- /squidman/info.txt: -------------------------------------------------------------------------------- 1 | squidman 2 | -------------------------------------------------------------------------------- /ssh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/ssh.exe -------------------------------------------------------------------------------- /urldecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/urldecode.sh -------------------------------------------------------------------------------- /urlencode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u1i/tools/HEAD/urlencode.sh -------------------------------------------------------------------------------- /utime.sh: -------------------------------------------------------------------------------- 1 | # print current utime 2 | date +%s 3 | --------------------------------------------------------------------------------