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 uses a standard buffered output stream that has the effect that it outputs the 14 data in chunks, not necessarily exactly when the data arrives. Using this 15 option disables that buffering. 16 17 Note that this is the negated option name documented. You can use --buffer to 18 enable buffering again. 19