Curl의 독립 하이픈(-)은 무엇을 의미하나요?

Curl의 독립 하이픈(-)은 무엇을 의미하나요?

이 명령에서 독립 하이픈( -C& 사이 )은 무엇을 -O의미합니까?

curl -C - -O http://www.intersil.com/content/dam/Intersil/documents/fn67/fn6742.pdf

FWIW - 튜토리얼을 따르고 있습니다.여기.

답변1

-C -입력 및 출력 파일을 기반으로 전송을 재개하는 방법을 자동으로 결정합니다.

~에서man curl(두 번째 단락 참고):

   -C/--continue-at <offset>
          Continue/Resume a previous file transfer at the  given  offset.
          The  given  offset  is  the  exact number of bytes that will be
          skipped, counting from the beginning of the source file  before
          it  is  transferred  to the destination.  If used with uploads,
          the FTP server command SIZE will not be used by curl.

          Use "-C -" to tell curl to automatically find out where/how  to
          resume  the transfer. It then uses the given output/input files
          to figure that out.

          If this option is used several times,  the  last  one  will  be
          used.

답변2

다음부터 시작하여 마지막 위치에서만 다운로드를 재개합니다.남자 곱슬:

   -C/--continue-at <offset>
          Continue/Resume a previous file transfer at  the  given  offset.
          The  given  offset  is  the  exact  number of bytes that will be
          skipped, counting from the beginning of the source  file  before
          it is transferred to the destination.  If used with uploads, the
          FTP server command SIZE will not be used by curl.

          Use "-C -" to tell curl to automatically find out  where/how  to
          resume  the  transfer. It then uses the given output/input files
          to figure that out.

관련 정보