Linux curlコマンドでファイル出力する方法

環境
RHEL8.6

書式
curl -O http://url/xxx.html
-Oオプション をつけてローカルにダウンロードします。

操作例
1.-Oオプション をつけずに実行する

$ curl http://localhost:6080/test.html
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
</head>
略

2.-Oオプション をつけてファイルをローカルにダウンロードする
$ curl -O http://localhost:6080/test.html
結果

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current

3.「-o <file>」を指定して出力ファイル名を指定する
$ curl -o result.html http://localhost:6080/test.html
結果

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                               Dload  Upload   Total   Spent    Left  Speed