Bash Cygwin简介

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bash Cygwin简介相关的知识,希望对你有一定的参考价值。

Sample BASH .profile for use in cygwin for windows.
  1. # .profile
  2.  
  3. # Define some colors first:
  4. red='e[0;31m'
  5. RED='e[1;31m'
  6. green='e[0;32m'
  7. GREEN='e[1;32m'
  8. yellow='e[0;33m'
  9. YELLOW='e[1;33m'
  10. blue='e[0;34m'
  11. BLUE='e[1;34m'
  12. pink='e[0;35m'
  13. PINK='e[1;35m'
  14. cyan='e[0;36m'
  15. CYAN='e[1;36m'
  16. NC='e[0m'
  17.  
  18. # Colors and Prompt
  19. export PS1="[e]2;[email protected]h:w07$yellow]u[$green]@[$yellow]h:[$pink]w [$GREEN]>"
  20.  
  21. set -o vi
  22. export EDITOR=vi
  23.  
  24. # History
  25. export HISTSIZE=1000
  26. export HISTFILE=~/.bash_history
  27. export HISTFILESIZE=1000
  28.  
  29. # Alias
  30. alias ls='ls -FG'
  31. alias ll='ls -l'
  32. alias cd..='cd ..'
  33.  
  34. # Working directory
  35. cd c:

以上是关于Bash Cygwin简介的主要内容,如果未能解决你的问题,请参考以下文章

如何从 Cygwin 在 Jenkins 控制台上显示 bash 脚本执行

Runtime.getRuntime().exec("C:\cygwin\bin\bash.exe") 没有要读取的输入

如何在 Emacs 中运行 Cygwin Bash Shell?

使用 cygwin 和 git bash 在 Windows 10 上进行 Shell 脚本评估失败

sh Bash的代码片段

cygwin中修改path变量