Skip to content

Instantly share code, notes, and snippets.

View tmatzxzone's full-sized avatar
:octocat:
Kluless

TmatzXzonEv tmatzxzone

:octocat:
Kluless
View GitHub Profile
@Zorg64
Zorg64 / download_gofile.sh
Last active December 11, 2024 02:18 — forked from shawnli87/download_gofile.sh
Bash script to download files from gofile.io
#!/bin/bash
# Prompts the user for a URL if not provided as a command-line argument.
# Extracts the ID from the given URL to use in API requests.
function promptForURL() {
local url="$1"
until [ -n "$url" ]; do
read -p "URL: " url
done
id=$(sed 's|.*gofile.io/d/||g' <<< "$url")
@asifajrof
asifajrof / download_gofile.sh
Last active February 11, 2024 04:55 — forked from shawnli87/download_gofile.sh
Bash script to download files from gofile.io
#!/bin/bash
url="$1"
file_names="${@:2}"
read -ra file_names_list <<< "$file_names"
#prompt for url if not provided
until [ ! -z "$url" ] ; do
read -p "url=" url
@shawnli87
shawnli87 / download_gofile.sh
Last active February 12, 2025 11:55 — forked from MCOfficer/README.md
Bash script to download files from gofile.io
#!/bin/bash
url="$1"
#prompt for url if not provided
until [ ! -z "$url" ] ; do
read -p "url=" url
done
id=$(sed 's|.*gofile.io/d/||g' <<< "$url")
@RubenKelevra
RubenKelevra / fast_firefox.md
Last active July 9, 2025 12:48
Make Firefox fast again