web-dev-qa-db-ja.com

コマンドライン端末のANSIカラーを設定する方法

私は特にMacOS Xでbashを使用していますが、答えはUnix-genericだと思います。

すでにANSIカラーを使用していますが、フォルダや隠しファイルなどに異なる色を再割り当てしたいと思います。

更新:隠しファイルに特定の色を割り当てることができないため、これは思ったほど役に立ちませんでした。また、スティッキーパーミッションビットの色がディレクトリよりも優先されるため、ディレクトリを常に同じ色にすることはできません(オリーブグリーンスクリーンショットで)

4
Petruza

〜/ .profileを次のように変更します。すでに持っているものと使用しているものに応じて、これを〜/ .bashrcまたは〜/ .bash_profileに入れることもできます。注:これはデフォルトの色設定を示しています。赤いディレクトリを見たい場合は、最初のeをBに変更してください。

    LSCOLORS=exfxcxdxbxegedabagacad

    export LSCOLORS

    export CLICOLOR=1    

〜/ .profileを保存してから、次の手順を実行します。

    . .profile

コマンドラインから。

Lsのマニュアルページとは異なる色の設定と属性の順序は次のとおりです。

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 foreground and default background for regular directories, black foreground and red
                 background for setuid executables, etc.
4
dhempler

Dircolors(1)コマンドを使用すると、シェル起動スクリプトで評価できるコマンドを生成して、出力の色付け方法を/ bin/lsに指示する環境変数LS_COLORSを設定できます。詳細は http://linux.die.net/man/5/dir_colors で入手できます。

2
Fran