How to automatically pipe to less if the result is more than a page on my shell?

前端 未结 5 668
梦如初夏
梦如初夏 2021-02-01 03:41

Mostly, I will not use | less for each and every command from the shell.

Pipe to less is used only when I actually run the command without is and find out t

5条回答
  •  感情败类
    2021-02-01 04:14

    The most significant problem with trying to do that is how to get it to turn off when running programs that need a tty.

    What I would recommend is that, for programs and utilities you frequently use, create shell functions that wrap them and pipe to less -F. In some cases, you can name the function the same as the program and it will take precedence, but can be overridden.

    Here is an example wrapper function which would need testing and perhaps some additional code to handle edge cases, etc.

    #!/bin/bash
    foo () {
        if [[ -p /dev/stdout ]]  # you don't want to pipe to less if you're piping to something else
        then
            command foo "$@" | less -F
        else
            command foo "$@"
        fi
    }
    

    If you use the same name as I have in the example, it could break things that expect different behavior. To override the function to run the underlying program directly precede it with command:

    command foo
    

    will run foo without using the function of the same name.

提交回复
热议问题