• mac 终端高亮显示~


    针对terminal采用bash模式:

    1. 编辑 ~/.bash_profile, 加入以下代码:
      export CLICOLOR=1
      export LSCOLORS=gxfxaxdxcxegedabagacad
    2. 保存,然后重启terminal,搞定,恢复正常了.

    详细讲解代码中的涵义:

    1. CLICOLOR: 前景色和背景色的字符串合并值
    2. LSCOLORS: 对于不同变量所采用的颜色方案,具体看如下表格:
      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
      而文件类型列表如下:
      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

    所以对照这张表就可以得知:

    gxfxaxdxcxegedabagacad

    就是对于directory而言,它的前景色就是: g(cyan),而背景色就是:x(默认的背景色).

    如转载文章,请注明本文链接: http://www.32133.com/share/772.html

  • 相关阅读:
    JS原生带小白点轮播图
    JS原生轮播图
    Vue.js小案例(2)
    Vue.js小案例(1)
    Vuejs入门级简单实例
    Vue.js简单入门
    微信登录oauth2.0
    PHP四维数组、三维数组封装遍历
    常用linux命令30个
    好架构是进化来的,不是设计来的
  • 原文地址:https://www.cnblogs.com/little-white/p/3519676.html
Copyright © 2020-2023  润新知