Created
March 23, 2025 09:42
-
-
Save 5p0ng3b0b/5f2488c216d0093f30f8dd97cc04c2f3 to your computer and use it in GitHub Desktop.
Useful bash function collection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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