博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
带彩色字体的man pages(debian centos)
阅读量:6248 次
发布时间:2019-06-22

本文共 1053 字,大约阅读时间需要 3 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
我的博客已迁移到xdoujiang.com请去那边和我交流
简介
most is a paging program that displays,one windowful at a 
time
,the contents of a 
file 
on a terminal.
It pauses after each windowful and prints on the window status line the 
screen 
the 
file 
name, 
current line number, and the percentage of the 
file 
so far displayed.
 
一、debian
1、安装包
apt-get -y 
install 
most
 
2、在.bashrc最后1行添加
export 
PAGER=
"/usr/bin/most -s"
 
3、生效
source 
.bashrc
 
二、centos
1、直接在.bashrc最后1行添加
man
函数
man 
() 
{
env 
\
LESS_TERMCAP_mb=$(
printf 
"\e[1;31m"
) \
LESS_TERMCAP_md=$(
printf 
"\e[1;31m"
) \
LESS_TERMCAP_me=$(
printf 
"\e[0m"
) \
LESS_TERMCAP_se=$(
printf 
"\e[0m"
) \
LESS_TERMCAP_so=$(
printf 
"\e[1;44;33m"
) \
LESS_TERMCAP_ue=$(
printf 
"\e[0m"
) \
LESS_TERMCAP_us=$(
printf 
"\e[1;32m"
) \
man 
"$@"
}
 
2、yum方式安装most
yum -y 
install 
most
 
三、参考
http:
//www
.cyberciti.biz
/faq/unix-linux-color-man-pages-configuration/
 
四、直接上图

本文转自 xdoujiang 51CTO博客,原文链接:http://blog.51cto.com/7938217/1655616,如需转载请自行联系原作者
你可能感兴趣的文章
我的友情链接
查看>>
我的友情链接
查看>>
森森的测试
查看>>
nat 转换 vrrp热备份 端口跟踪
查看>>
Linux crontab调用脚本中的ifconfig命令返回为空
查看>>
Linux解决Device eth0 does not seem to be present
查看>>
php 冒泡排序法
查看>>
seaJs原理分析和源码解读(上)
查看>>
docker学习记录(二)--安装docker并配置镜像源
查看>>
HTML5 localStorage本地存储实际应用举例
查看>>
python之装饰器
查看>>
华为ensp实验拓扑一熟悉常用的IP相关命令拓扑
查看>>
mysql双主复制模型
查看>>
U8860 华为荣耀各种刷机教程
查看>>
Java使用"指针"快速比较字节
查看>>
Tomcat配置性能管理服务--Elastic APM Server
查看>>
这些年正Android - Traveling 第一章001
查看>>
Oracle备份与恢复(五)
查看>>
处理电脑蓝屏步骤
查看>>
虚拟桌面的备份恢复最佳实践 第二部分
查看>>