bashrc.bfox

来自「android-w.song.android.widget」· BFOX 代码 · 共 71 行

BFOX
71
字号
# Bourne Again SHell init file.## Files you make look like rw-rw-rumask 002# Don't make useless coredump files.  If you want a coredump,# say "ulimit -c unlimited" and then cause a segmentation fault.ulimit -c 0# Sometimes, there are lots of places that one can find tex inputs.export TEXINPUTS=.:$HOME/bin:/usr/lib/tex/inputs:/usr/local/lib/tex/inputs# Where's the Gnu stuff at?GNU=/usr/gnu/binX11=/usr/bin/X11UTIL_PATH=$GNU:$X11STANDARD_PATH=/usr/local/bin:/usr/ucb:/bin:/usr/bin:/usr/etc:/etc:/usr/gamesif [ -d $HOME/bin/$HOSTTYPE ]; then	MY_PATH=$HOME/bin/$HOSTTYPEfiif [ -d $HOME/bin ]; then	MY_PATH=$MY_PATH:$HOME/binfiif [ -d /usr/hosts ]; then	STANDARD_PATH=$STANDARD_PATH:/usr/hostsfiPATH=.:$MY_PATH:$UTIL_PATH:$STANDARD_PATH# If not running interactively, then returnif [ -z "$PS1" ]; then	returnfi# Set ignoreeof if you don't want EOF as the sole input to the shell to# immediately signal a quit condition.  This only happens at the start# of a line if the line is empty, and you haven't just deleted a character# with C-d.  I turn this on in ~/.bash_profile so that only login shells# have the right to be obnoxious.# set -o ignoreeof# Set auto_resume if you want to resume on "emacs", as well as on# "%emacs".auto_resume=exact# Set notify if you want to be asynchronously notified about background# job completion.set -o notify# Make it so that failed `exec' commands don't flush this shell.shopt -s execfailif [ -z "$LOGIN_SHELL" ]; then	PS1="\u@\h\$ "fiHISTSIZE=256MAILCHECK=60# A couple of default aliases.alias j='jobs -l'alias po=popdalias pu=pushdalias ls='ls -F'[ -f ~/.bash_aliases ] && . ~/.bash_aliases

⌨️ 快捷键说明

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