← 返回命令列表

Linux command

wcurl 命令

网络

需要网络或远程资源。

常用示例

Download file

wcurl [https://example.com/file.zip]

Download multiple

wcurl [url1] [url2]

Resume download

wcurl -c [url]

With output name

wcurl -o [filename] [url]

说明

wcurl is a thin wrapper around curl that provides sensible defaults for the common task of downloading files. It automatically enables a progress bar, follows redirects, and uses the remote filename for output, eliminating the need to specify common curl flags for simple downloads. Resume support allows continuing interrupted downloads without manually configuring curl's range options. Multiple URLs can be specified to download several files in sequence, and a custom output filename can be provided when the remote name is not suitable. The tool is designed for users who frequently use curl for downloads but find its default behavior (outputting to stdout with no progress indicator) inconvenient for that use case.

参数

-c
Continue/resume.
-o _FILE_
Output filename.
--help
Show help.

FAQ

What is the wcurl command used for?

wcurl is a thin wrapper around curl that provides sensible defaults for the common task of downloading files. It automatically enables a progress bar, follows redirects, and uses the remote filename for output, eliminating the need to specify common curl flags for simple downloads. Resume support allows continuing interrupted downloads without manually configuring curl's range options. Multiple URLs can be specified to download several files in sequence, and a custom output filename can be provided when the remote name is not suitable. The tool is designed for users who frequently use curl for downloads but find its default behavior (outputting to stdout with no progress indicator) inconvenient for that use case.

How do I run a basic wcurl example?

Run `wcurl [https://example.com/file.zip]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -c do in wcurl?

Continue/resume.