New (?) idea for shell scripting - Programming On Unix

Users browsing this thread: 1 Guest(s)
pranomostro
Long time nixers
I found out that there is a coreutils utility, stdbuf.
It lets you set the buffer for a program, for example:
Code:
stdbuf -i0 -o512 awk 1
lets you set the input unbuffered for awk.


Messages In This Thread
New (?) idea for shell scripting - by pranomostro - 01-09-2015, 11:29 AM
RE: New (?) idea for shell scripting - by venam - 01-09-2015, 03:17 PM
RE: New (?) idea for shell scripting - by z3bra - 02-09-2015, 04:19 AM
RE: New (?) idea for shell scripting - by z3bra - 02-09-2015, 06:47 AM
RE: New (?) idea for shell scripting - by pranomostro - 09-09-2015, 04:18 PM