no-buffer.md (649B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: no-buffer 5 Short: N 6 Help: Disable buffering of the output stream 7 Category: output 8 Added: 6.5 9 Multi: boolean 10 See-also: 11 - progress-bar 12 Example: 13 - --no-buffer $URL 14 --- 15 16 # `--no-buffer` 17 18 Disable the buffering of the output stream. In normal work situations, curl 19 uses a standard buffered output stream that has the effect that it outputs the 20 data in chunks, not necessarily exactly when the data arrives. Using this 21 option disables that buffering. 22 23 Note that this is the negated option name documented. You can use --buffer to 24 enable buffering again.