nix/home/program/bash/module/Curl.sh

6 lines
136 B
Bash
Raw Normal View History

2024-12-18 10:54:24 +03:00
# Download a file from the web.
# Usaee: dl <FILE> [FILES...]
function dl() {
wcurl --curl-options='--http2 --continue-at -' -- ${@}
}