Skip to content

Instantly share code, notes, and snippets.

@hkuno9000
Last active August 29, 2015 14:27
Show Gist options
  • Save hkuno9000/7fd63fee29a01014108c to your computer and use it in GitHub Desktop.
Save hkuno9000/7fd63fee29a01014108c to your computer and use it in GitHub Desktop.
color-prompt for Windows7's cmd.exe

ansiconを使って、Windows7のコマンドプロンプトに色をつける.

インストール手順

  • https://github.com/adoxa/ansicon/releases から ansi166.zip をダウンロードして適当なフォルダへ展開する.
  • 展開したフォルダの x64 フォルダ下の ansicon.exe -i を実行すると、機能ONとなる.
  • 機能OFFするなら -u オプションで実行する.

コマンドプロンプト色付けバッチファイル.

prompt コマンドにANSIエスケープシーケンスを追加して色付けする. 色設定は各自の好みで調整する.

@c:\Tools\ansicon\x64\ansicon.exe -i
@rem 反転 $e[7m
@rem 文字色赤 $e[31m --- 30:黒, 31:赤, 32:緑, 33:黄, 34:青, 35:紫, 36:水.
@rem 背景色緑 $e[42m --- 40:黒, 41:赤, 42:緑, 43:黄, 44:青, 45:紫, 46:水.
@rem see more: https://github.com/adoxa/ansicon/blob/master/sequences.txt
prompt $e[7m$P$G$e[0m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment