bash_profile
来自「UNIX下SH的实现源码」· 代码 · 共 19 行
TXT
19 行
# Startup file for bash login shells.#default_dir=/usr/local/lib/if [ -n "$PS1" ]; then PS1='\u@\h(\#)\$ ' IGNOREEOF=3fiLOGIN_SHELL=true# If the user has her own init file, then use that one, else use the# canonical one.if [ -f ~/.bashrc ]; then . ~/.bashrcelif [ -f ${default_dir}Bashrc ]; then . ${default_dir}Bashrc;fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?