blob: ee656aa9fa62612bc5e63273b7ffff301eceb127 (
plain)
1 Default Solaris Man Pager
2 =========================
3 :author: Aaron Ball
4 :email: nullspoon@iohq.net
5
6
7 == {doctitle}
8
9 The title of this should actually say "Default Solaris man Pager Sucks" but in
10 the interest of professionalism, I left that last word out.
11
12 The Solaris default pager for man pages is "more". It unfortunately doesn't
13 support the friendly controls of "less", search highlighting, scrolling one
14 line at a time, etc. This is less functional than using "less" for your pager.
15 With that, let's have a look at how we fix this.
16
17 If you would like to change it, you need to crack open your *.bashrc* and add
18 the following line...
19
20 ----
21 export PAGER="less"
22 ----
23
24 Tada!
25
26 Launch bash and look up a man page.
27
28 As a friend of mine said in regards to this, "LESS is more than MORE."
29
30
31 One closing notes. This seems to be a very universal variable, so this should
32 also work with csh, ksh, sh, etc, though the rc file that needs to be edited
33 will be different.
34
35 Category:Solaris
36 Category:man
37
38
39 // vim: set syntax=asciidoc:
|