# gitgone **Repository Path**: mirrors_untitaker/gitgone ## Basic Information - **Project Name**: gitgone - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-28 - **Last Updated**: 2026-04-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README A script to download git.io shortlinks. Across machines: ## Random mode Download random URLs ``` curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh cargo run --release random | pv --line-mode --rate > links.txt ``` ## Stdin mode Download URLs from stdin ``` ... echo https://git.io/foobar > input.txt cargo run --release stdin < input.txt | pv --line-mode --rate > links.txt ``` If the numbers seem low, try tweaking `NUM_WORKERS` in the code. ## Useful commands ``` cat random_dump.csv | rg -o 'https?://git.io/[a-zA-Z0-9_-]+' ```