lesskey - localbin - leot's localbin (~/bin)
 (HTM) hg clone https://bitbucket.org/iamleot/localbin
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       lesskey
       ---
            1 #!/bin/sh
            2 
            3 #
            4 # Invoke pkgsrc lesskey if available, falling back to base one.
            5 #
            6 
            7 if [ -x /usr/pkg/bin/lesskey ]; then
            8         exec /usr/pkg/bin/lesskey "$@"
            9 fi
           10 
           11 /usr/bin/lesskey "$@"