Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 330 Bytes

File metadata and controls

13 lines (9 loc) · 330 Bytes

To file

To download the URL https://example.com/a and save the content in the local filename store, which curl command line works?

  1. curl https://example.com/a -O store
  2. curl https://example.com/a -T store
  3. curl https://example.com/a -o store
  4. curl -o https://example.com/a store

Correct: 3

Difficulty: 1