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

11 lines
190 B
Nix
Raw Normal View History

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