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

10 lines
177 B
Nix
Raw Normal View History

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