原文链接,转载请注明出处: http://www.happycxz.com/m/?p=137 常见shell类型 Bourne shell (sh) UNIX 最初使用,且在每种 UNIX 上都可以使用. 在 shell 编程方面相当优秀,但在处理与用户的交互方面做得不如其他几种shell. C shell (csh) csh, the C shell, is a command interpreter with a syntax similar to the C programming lan…
个人.bashrc: ~/.bashrc: # .bashrc # User specific aliases and functions alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi 全局bashrc: /etc/bashrc: # /etc/bashrc # System wide funct…