10 lines
177 B
Nix
10 lines
177 B
Nix
{ ... }: {
|
|
text = ''
|
|
# Download a file from the web.
|
|
# Usaee: dl <FILE> [FILES...]
|
|
function dl() {
|
|
wcurl --curl-options='--http2 --continue-at -' -- ''${@}
|
|
}
|
|
'';
|
|
}
|