Curl : Rename wcurl to dl to match vdl.

This commit is contained in:
Dmitry Voronin 2024-08-24 03:32:54 +03:00
parent 4ba17cc039
commit 31ba1b5101
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -1,5 +1,9 @@
{ ... }: { { ... }: {
text = '' text = ''
alias wcurl="wcurl --curl-options='--progress-bar --http2 --continue-at -'" # Download a file from the web.
# Usage: dl <FILE> [FILES...]
function dl() {
wcurl --curl-options='--http2 --continue-at -' -- ''${@}
}
''; '';
} }