带彩色字体的man pages(debian centos)

简介
most
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 "[email protected]"
}

2、yum方式安装most

yum -y install most

三、参考
http://www.cyberciti.biz/faq/unix-linux-color-man-pages-configuration/

四、直接上图

时间: 2024-10-15 17:06:14

带彩色字体的man pages(debian centos)的相关文章

python终端如何输出彩色字体

python终端如何输出彩色字体 实现过程: 终端的字符颜色是用转义序列控制的,是文本模式下的系统显示功能,和具体的语言无关. 转义序列是以ESC开头,即用\033来完成(ESC的ASCII码用十进制表示是27,用八进制表示就是033) 书写格式: \033[显示方式;前景色;背景色m+字符串 \033[0m 注意: 显示方式.前景色.背景色都是可选参数: 前景色就是字体颜色: m是必写参数: 三个参数没有顺序要求,尽量按照以下格式书写 例如:print("\033[33;41m你好IT网\03

选择使用系统自带的字体

for(NSString *familyName in [UIFont familyNames]){ NSLog(@"Font FamilyName = %@",familyName); //*输出字体族科名字 for(NSString *fontName in [UIFont fontNamesForFamilyName:familyName]){ NSLog(@"\t%@",fontName);         //*输出字体族科下字样名字 } } 使用: [U

Dialog(八)——改变系统自带Dialog字体大小(ContextThemeWrapper)

MainActivity如下: package c.c.testdialog; import android.app.Activity; import android.app.AlertDialog; import android.app.AlertDialog.Builder; import android.app.Dialog; import android.content.DialogInterface; import android.os.Bundle; import android.v

VC printf输出彩色字体

在VC下使用SetConsoleTextAttribute()函数可以改变当前控制台的前景色和背景色,从而达到输出彩色字体的效果. 使用的方法也很简单,具体代码如下: [cpp] view plaincopy #include <windows.h> #include <winnt.h> #include <stdio.h> int main(int argc, char* argv[]) { HANDLE hConsoleWnd; hConsoleWnd = GetS

重置root密码(debian centos)

一.debian7.8 1.在Grub的引导装载程序菜单上,选择你要进入的条目,键入"e"来进入编辑模式 2.在quiet后面增加init=/bin/bash按ctrl-c或f10启动机器 3.输入mount后看到根分区是ro(只读状态) 4.直接修改root密码会报错 5.以读写模式挂载根分区 再次修改密码就行了 6.参数说明init=/bin/bash使用root获得/bin/bash程序 二.centos6.61.在Grub的引导装载程序菜单上,选择你要进入的条目,键入"

快速获得服务器基本信息(debian centos)shell脚本

先上图后上shell脚本(适用于centos和debian系列) cat check.sh  #!/bin/bash   #-------------------------------------------------- #Date:June 15 2015 #Author:jimmygong #Mail:[email protected] #Function: #Version:1.0 #apt-get -y install dmidecode --force-yes or yum -y 

Shell 显示带颜色字体

shell脚本中echo显示内容带颜色显示,echo显示带颜色,需要使用参数-e 格式如下: echo -e "\033[字背景颜色:文字颜色m字符串\033[0m" 例如: echo -e "\033[41;36m something here \033[0m" 其中41的位置代表底色, 36的位置是代表字的颜色 注:  www.2cto.com 1.字背景颜色和文字颜色之间是英文的"" 2.文字颜色后面有个m 3.字符串前后可以没有空格,如果

sshfs命令挂载远程目录(debian centos)

项目有台online机器需要迁移到另外1台上去 上面有多个不同目录需要 scp到另外1台上去 发现使用sshfs一次性的将目录挂载过来 在本地复制后在umount 这样省事也方便,也省去每次scp需要敲密码了. 基础环境 severA=192.168.1.122(6.0.10)debian  severB=192.168.1.120(6.6)centos 1.安装sshfs(SSHFS - filesystem client based on ssh) apt-get -y install ss

Android(java)学习笔记96:如何改变spinner系统自带的字体和颜色

1.首先我们要知道spinner系统自带字体和颜色本质: 原生的Spring 控件是无法更改字体和颜色的... 从下面的代码可以看出...红色的标注显示使用的是Android默认的布局.. 1 Spinner s1 = (Spinner) findViewById(R.id.spinner1); 2 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource( 3 this, R.array.colors, andr