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
Making aliases of all your commands would be a good start. Something like
alias lm="ls -al | more" alias cam="cat $@ | more"