linuxcolor
Ⅰ linux 中 ls -d .* --color=tty 中.*是什么意思
*是通配符,表示任意字符。.*就是所有以.开头的文件名或目录名
Ⅱ 怎么修改linux颜色
启动Linux系统后,在桌面上右键单击,选择【Open in Terminal】[中文:在终端中打开],启动终端,
启动后,终端现在的外观是“白底黑字”,不满意,
依次单击【Edit】[中文:编辑]>【Profile Preferences】[中文:配置首选项],
单击【Color】[中文:颜色]选项卡,
取消勾选【Use colors from system theme】[中文:使用系统主题的颜色],然后在下面的【Built-in schemes】[中文:内置主题]中选择你喜欢的主题即可,例如笔者选择就是“Green on black”,
如果所有的内置主题,你都不满意,你还可以在下面自定义文本颜色和背景颜色,
Ⅲ linux ls命令中-color是什么意思,最好详细点
man ls 看看就知道了:
--color[=WHEN]
colorize the output. WHEN defaults to `always' or can be `never' or `auto'.
就是说在什么情况下(总是,从不,或自动)让ls的结果用彩色显示。
例如ubuntu下的ls其实是 ls --color=auto的别名。
Ⅳ 如何更改Linux终端颜色和字体
在 Linux 系统中打开终端。
在终端内用鼠标右键单击,在弹出的菜单中选择 编辑当前配置文件。
在弹出的编辑窗口中,先取消 使用系统终端字体 前的小勾,然后单击字体组合框。
选择适当的 字体族、样式、大小,字体的效果可通过下方的 预览 窗口实时观看。满意后,单击 确定。
切换到编辑窗口的 颜色 选项卡。取消 使用系统主题中的颜色 前的小勾,然后单击内置方案后的组合框,挑选一种你喜欢的颜色方案。
当然,你也可以在窗口的下部自定义颜色方案。
满意后,单击 关闭。
6
这样,终端的颜色和字体就改变成你喜欢的了。
Ⅳ 在linux命令行显示绿色高亮的目录是什么意思
在linux命令行显示绿色是可执行文件,操作方法如下:
1、首先在电脑开始菜单中打开“运行”,在运行栏中输入“cmd”。
Ⅵ linux系统下如何显示关键字颜色
linux下设置ls命令显示文件、文件夹颜色:
1. LS_COLORS
用 dircolors -p 可以 看到缺省的颜色设置,包括各种颜色和“粗体”,下划线,闪烁等定义。
环境变量LS_COLORS时用来设置GNU ls的--color选项中的颜色的。
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
NORMAL 00 # global default, although everything should be something.
FILE 00 # normal file
DIR 01;34 # directory
故,要设置ls的颜色,则在SHELL的配置文件(以下是tcsh的配置文件:.tcshrc,对于bash略有不同)中添加下面一行:
setenv LS_COLORS 'no=00:fi=00:di=01;33:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;35:*.cmd=01;35:*.exe=01;35:*.com=01;35:*.btm=01;35:*.bat=01;35:*.sh=01;35:*.csh=01;35:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:'
即可,可以参照上面的英文自行配置。
另:/etc/DIR_COLORS 文件为系统默认颜色参数配置文件
如果想修改定义自己的颜色参数配置文件,请执行如下操作:
1) cp /etc/DIR_COLORS $HOME/.dir_colors
2) 修改中的颜色定义 $HOME/.dir_colors
2. CLICOLOR
# CLICOLOR是用来设置是否进行颜色的显示。CLI是Command Line Interface的缩写。
setenv CLICOLOR 1
# LSCOLORS是用来设置当CLICOLOR被启用后,各种文件类型的颜色
setenv LSCOLORS gxfxaxdxcxegedabagacad
LSCOLORS的值中每两个字母为一组,分别设置某个文件类型的文字颜色和背景颜色。LSCOLORS中一共11组颜色设置,按照先后顺序,分别对以下的文件类型进行设置:
directory
symbolic link
socket
pipe
executable
block special
character special
executable with setuid bit set
executable with setgid bit set
directory writable to others, with sticky bit
directory writable to others, without sticky bit
LSCOLORS中,字母代表的颜色如下:
a 黑色
b 红色
c 绿色
d 棕色
e 蓝色
f 洋红色
g 青色
h 浅灰色
A 黑色粗体
B 红色粗体
C 绿色粗体
D 棕色粗体
E 蓝色粗体
F 洋红色粗体
G 青色粗体
H 浅灰色粗体
x 系统默认颜色
所以,如果我们想把目录显示成红色,就可以把LSCOLORS设置为bxfxaxdxcxegedabagacad就可以了
////////////////////////////////////////////
LSCOLORS 的含义:
LSCOLORS The value of this variable describes what color to use
for which attribute when colors are enabled with
CLICOLOR. This string is a concatenation of pairs of the
format fb, where f is the foreground color and b is the
background color.
The color designators are as follows:
a black
b red
c green
d brown
e blue
f magenta
g cyan
h light grey
A bold black, usually shows up as dark grey
B bold red
C bold green
D bold brown, usually shows up as yellow
E bold blue
F bold magenta
G bold cyan
H bold light grey; looks like bright white
x default foreground or background
Note that the above are standard ANSI colors. The actual
display may differ depending on the color capabilities of
the terminal in use.
The order of the attributes are as follows:
1. directory
2. symbolic link
3. socket
4. pipe
5. executable
6. block special
7. character special
8. executable with setuid bit set
9. executable with setgid bit set
10. directory writable to others, with sticky bit
11. directory writable to others, without sticky
bit
The default is “exfxcxdxbxegedabagacad”, i.e. blue fore-
ground and default background for regular directories,
black foreground and red background for setuid executa-
bles, etc.
Ⅶ Linux命令ls --color 和ls -color 分别是干什么用的有什么区别注:前者color前面有两个“-”,后者一个
ls -color
是指 ls -c -o -l -o -r组合的意思
-c with -lt: sort by, and show, ctime (time of last
modification of file status information)
with -l: show ctime and sort by name
otherwise: sort by ctime
-l use a long listing format
-o like -l, but do not list group information
-r, --reverse reverse order while sorting
------------------------------------------------------------------------------------------------------------------------------
ls --color是颜色选项
--color[=WHEN] control whether color is used to distinguish file
types. WHEN may be `never', `always', or `auto'
Ⅷ linux 下显示的 color=tty是什么意思
是按系统预定义的颜色区分不同的文件类型等 有
绿色 红色 黄色 。。。
例:alias 显示 alias ls=‘ls --color=tty’
去掉的话 ls 后你就无法直观的看出哪个是目录 那个是文件了
Ⅸ linux下ls -color显示的是什么颜色
这个就说来话长了。ls作为linux的原始命令,是没有颜色之说的,不过现在多数环境下的ls都是包装过的,用ls时,都会有颜色区分。至于你说的-color,是错误的写法,应该是--color,color有三个取值{never,
auto,
always},也可以省略,如:ls
--color=always。linux中参数有用'-'和'--'的,前者一般用的一个字符,后者接全称,所以是--color,而不是-color.
Ⅹ Linux在命令行方式中,修改默认颜色;下面几步如何用命令实现.......
将第二步改下就好了
1、将/etc/DIR_COLORS文件cp到~/下,并改名为.dir_colors。
2、编辑.dir_colors文件,找到“DIR 01;34 # directory”,将34改为37。
你可以找到文件的两行注释:
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
按照颜色对应的数字,你还可以把目录显示颜色改成其他的。
同样其他的显示效果(包括背景)也可以参照说明进行修改。
这样你就可以定制自己的linux下命令行方式下的个性化显示效果了。
3、重新登录,就可以看到修改后的效果了。