continue-at.d 724 B

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