Limit output of all Linux commands

前端 未结 5 1124
没有蜡笔的小新
没有蜡笔的小新 2021-01-18 19:23

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

5条回答
  •  天涯浪人
    2021-01-18 20:02

    Making aliases of all your commands would be a good start. Something like

    alias lm="ls -al | more"
    alias cam="cat $@ | more"
    

提交回复
热议问题