Skip to content

Instantly share code, notes, and snippets.

@5p0ng3b0b
Created March 23, 2025 09:42
Show Gist options
  • Save 5p0ng3b0b/5f2488c216d0093f30f8dd97cc04c2f3 to your computer and use it in GitHub Desktop.
Save 5p0ng3b0b/5f2488c216d0093f30f8dd97cc04c2f3 to your computer and use it in GitHub Desktop.
Useful bash function collection
#!/bin/bash
#dbdl: Download file from dropbox link
dbdl(){ DL=${1/=0/=1} FN=$(sed -e 's|?.*0||' -e 's|.*/||' <<<$1); wget -q --show-progress $DL -O $FN; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment