no-buffer.d 533 B

123456789101112131415
  1. c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: no-buffer
  4. Short: N
  5. Help: Disable buffering of the output stream
  6. Category: curl
  7. Example: --no-buffer $URL
  8. Added: 6.5
  9. See-also: progress-bar
  10. Multi: boolean
  11. ---
  12. Disables the buffering of the output stream. In normal work situations, curl
  13. will use a standard buffered output stream that will have the effect that it
  14. will output the data in chunks, not necessarily exactly when the data arrives.
  15. Using this option will disable that buffering.