I\'m looking for a way to limit the amount of output produced by all command line programs in Linux, and preferably tell me when it is limited.
I\'m working over a s
this makes me think of bash-completion.
As complete command in bash enables you to specify handler when a program is not found,
complete
what about write your own handler and clear $PATH, in order to execute every command with redirection to a filtering pipe?
$PATH
#Did not try it myself.