bash_profile
来自「linux下bash的源码」· 代码 · 共 21 行
TXT
21 行
# Startup file for bash login shells.#default_dir=/usr/local/lib/if [ "$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 source ~/.bashrcelse if [ -f ${default_dir}Bashrc ]; then source ${default_dir}Bashrc; fifi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?