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