blob: 726171a4120b26141c22f593d38aa6998957b504 [file] [log] [blame]
xf.li6c8fc1e2023-08-12 00:11:09 -07001c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
2SPDX-License-Identifier: curl
3Short: C
4Long: continue-at
5Arg: <offset>
6Help: Resumed transfer offset
7See-also: range
8Category: connection
9Example: -C - $URL
10Example: -C 400 $URL
11Added: 4.8
12Multi: single
13---
14Continue/Resume a previous file transfer at the given offset. The given offset
15is the exact number of bytes that will be skipped, counting from the beginning
16of the source file before it is transferred to the destination. If used with
17uploads, the FTP server command SIZE will not be used by curl.
18
19Use "-C -" to tell curl to automatically find out where/how to resume the
20transfer. It then uses the given output/input files to figure that out.