找回密码
 注册会员
搜索

本文来自

Linux

Linux

订阅|关注

请添加对本版块的简短描述

297

主题

314

帖子

2343

积分

管理员

Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20

积分
2343

[教程] 修改Debian终端显示字体颜色,区分文件和目录

[复制链接]
跳转到指定楼层
楼主
37810 xiaoxiao 发表于 2016-2-9 12:04:56
本帖最后由 xiaoxiao 于 2016-2-14 09:59 编辑

默认安装好 Debian 系统后,大家会发现用 ls 命令不带参数,不会显示彩色。可加一个 –color 参数来显示颜色
例如:
  1. ls --color
复制代码


每次都带参数未免有些麻烦,最好的方法是把它写到默认配置文件 .bashrc 里,位于用户目录。
1:因此,通过修改 .bashrc 文件,永久受益
  1. vi ~/.bashrc
复制代码


2:去掉默认的注释后,然后代码如下:
  1. # ~/.bashrc: executed by bash(1) for non-login shells.

  2. # Note: PS1 and umask are already set in /etc/profile. You should not
  3. # need this unless you want different defaults for root.
  4. # PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
  5. # umask 022

  6. # You may uncomment the following lines if you want `ls' to be colorized:
  7. export LS_OPTIONS='--color=auto'
  8. eval "`dircolors`"
  9. alias ls='ls $LS_OPTIONS'
  10. alias ll='ls $LS_OPTIONS -l'
  11. alias l='ls $LS_OPTIONS -lA'
  12. #
  13. # Some more alias to avoid making mistakes:
  14. alias rm='rm -i'
  15. alias cp='cp -i'
  16. alias mv='mv -i'
复制代码


保存退出后,重新打开一个终端,运行 ls 命令就可以看到彩色效果了!




回复

使用道具 举报

快速回复 返回顶部 返回列表