no-buffer.d 638 B

1234567891011121314151617
  1. c: Copyright (C) 1998 - 2022, 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. ---
  11. Disables the buffering of the output stream. In normal work situations, curl
  12. will use a standard buffered output stream that will have the effect that it
  13. will output the data in chunks, not necessarily exactly when the data arrives.
  14. Using this option will disable that buffering.
  15. Note that this is the negated option name documented. You can thus use
  16. --buffer to enforce the buffering.