bashrc

来自「山寨手机用的」· 代码 · 共 33 行

TXT
33
字号
# Begin /etc/bashrc# Written for Beyond Linux From Scratch# by James Robertson <jameswrobertson@earthlink.net># updated by Bruce Dubbs <bdubbs@linuxfromscratch.org># System wide aliases and functions.# System wide environment variables and startup programs should go into# /etc/profile.  Personal environment variables and startup programs# should go into ~/.bash_profile.  Personal aliases and functions should# go into ~/.bashrc# Provides a colored /bin/ls command.  Used in conjunction with code in# /etc/profile.alias ls='ls --color=auto'# Provides prompt for non-login shells, specifically shells started# in the X environment. [Review the LFS archive thread titled# PS1 Environment Variable for a great case study behind this script# addendum.]NORMAL="\[\e[0m\]"RED="\[\e[1;31m\]"GREEN="\[\e[1;32m\]"if [[ $EUID == 0 ]] ; then  PS1="$RED\u [ $NORMAL\w$RED ]# $NORMAL"else  PS1="$GREEN\u [ $NORMAL\w$GREEN ]\$ $NORMAL"fi# End /etc/bashrc

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?