continue-at.d 776 B

123456789101112131415161718192021
  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. ---
  13. Continue/Resume a previous file transfer at the given offset. The given offset
  14. is the exact number of bytes that will be skipped, counting from the beginning
  15. of the source file before it is transferred to the destination. If used with
  16. uploads, the FTP server command SIZE will not be used by curl.
  17. Use "-C -" to tell curl to automatically find out where/how to resume the
  18. transfer. It then uses the given output/input files to figure that out.
  19. If this option is used several times, the last one will be used.