Skip to content

Instantly share code, notes, and snippets.

View rene1977's full-sized avatar

Rene Schumann rene1977

View GitHub Profile
@shawnli87
shawnli87 / gofile_dl
Last active April 11, 2024 22:43
Zsh script to download files from gofile.io
#!/bin/zsh
url="$1"
until [ ! -z "$url" ] ; do
read "url?url="
done
id=$(rev <<< "$url" | cut -d'/' -f1 | rev)