bash脚本学习之一:ubuntu系统bash.bashrc走读注释

本文详细解析了Ubuntu系统全局bash配置文件.bashrc的内容,包括交互式shell设置、窗口大小检测、提示符定制、bash补全功能启用以及sudo提示和命令未找到的处理机制。
摘要由CSDN通过智能技术生成
# System-wide .bashrc file for interactive bash(1) shells.

# To enable the settings / commands in this file for login shells as well,
# this file has to be sourced in /etc/profile.

# If not running interactively, don't do anything
# 如果字符串“$PS1”长度为0,则返回
# PS1为用户主提示符
[ -z "$PS1" ] && return

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
#设置checkwinsize,checkwinsize
shopt -s checkwinsize

# set variable identifying the chroot you work in (used in the prompt below)
# 如果"$debian_chroot"为空 且 /etc/debian_chroot可读,则设置debian_chroot为/etc/debian_chroot的内容
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, overwrite the one in /etc/profile)
# \u当前用户的用户名 \$如果用户以root身份运行就显示#,否则就显示$
# \w工作目录的路径名 \h计算机的主要名,
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值