Skip to content

Instantly share code, notes, and snippets.

View SpaceBison's full-sized avatar

Wojciech Matuszewski SpaceBison

View GitHub Profile
@SpaceBison
SpaceBison / gist:4ef6c00b2b5dac7837ac2df2909b931b
Last active April 16, 2024 10:59
Shell one liner to download a file using nc, xxd, tr, and sed
# download http://storage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4
printf 'GET /gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4 HTTP/1.1\r\nHost: storage.googleapis.com\r\nConnection: close\r\n\r\n' | nc storage.googleapis.com 80 | xxd -p | tr -d '\n' | sed 's/.*0d0a0d0a//1'| xxd -p -r > ForBiggerMeltdowns.mp4