2
0

no-buffer.d 502 B

12345678910111213
  1. Long: no-buffer
  2. Short: N
  3. Help: Disable buffering of the output stream
  4. Category: curl
  5. Example: --no-buffer $URL
  6. ---
  7. Disables the buffering of the output stream. In normal work situations, curl
  8. will use a standard buffered output stream that will have the effect that it
  9. will output the data in chunks, not necessarily exactly when the data arrives.
  10. Using this option will disable that buffering.
  11. Note that this is the negated option name documented. You can thus use
  12. --buffer to enforce the buffering.