this bash.rc
file 適用する this 私のシェルに適用する:
#======================================================================#
# .bashrc
# Fichero de opciones del Shell bash
#
# Electro7
# 23 sep 2019
# Versión común - WSL, debian y archlinux
#======================================================================#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
#----------------------------------------------------------------------#
# Prompt
#----------------------------------------------------------------------#
# Título para las ventanas de consola en la X
TW_TITLE='\[\e]0;\h : \s (\w)\a\]'
# Añade retorno de carro y el cambio del titulo de la ventana al P1 actual
function __promptadd
{
local col_n="\[\033[0m\]" # Reset
local col_u="\[\033[1;36m\]" # User > cyan
[[ "$UID" = "0" ]] && col_u="\[\033[1;31m\]" # Root > red
PS1="$TW_TITLE$PS1\n${col_u} \\$ ${col_n}"
}
# Prompt a traves de promptline.vim
# Es un plugin de VIM para crear un Prompt con simbolos powerline.
# Entrar en vim y hacer un :PromptlineSnapShot ~/.Shell_Prompt.sh
function Prompt_line
{
source ~/bin/Prompt_powerline.sh
Prompt_COMMAND="$Prompt_COMMAND; __promptadd;"
}
# Prompt "normal" sin carácteres raros
function Prompt_term
{
# Mi chequeo de git propio
source ~/bin/Prompt_e7.sh
}
# Selección de Prompt según el tipo de terminal
case "$TERM" in
rxvt*)
Prompt_line
;;
*)
Prompt_term
;;
esac
#----------------------------------------------------------------------#
# Colores
#----------------------------------------------------------------------#
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
export LS_OPTIONS='--color=auto'
alias l='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l -N -F'
alias ls='ls $LS_OPTIONS -A -N -hF'
fi
alias lsmp3='ls -1 --indicator-style=none *.mp3'
alias lsepub='ls -1 -R --indicator-style=none | grep epub'
export GREP_COLOR="1;31"
alias grep='grep --color=auto'
export LESS="-R"
export PAGER="most"
#----------------------------------------------------------------------#
# PATH
#----------------------------------------------------------------------#
export PATH="$PATH:$HOME/bin"
#----------------------------------------------------------------------#
# Variables variadas
#----------------------------------------------------------------------#
# Por defecto.
export EDITOR="vim"
export BROWSER="firefox"
#export QT_STYLE_OVERRIDE=GTK
export QT_QPA_PLATFORMTHEME=qt5ct
export QT_AUTO_SCREEN_SCALE_FACTOR=0
#----------------------------------------------------------------------#
# Alias
#----------------------------------------------------------------------#
# Alias WSL
if [[ $(pgrep wsl) -gt 0 ]]; then
alias start="/mnt/c/Windows/System32/cmd.exe /c "start""
alias s="start"
alias gv="start gvim.exe"
fi
# Alias contra borrados accidentales.
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Alias del Shell
alias h='history'
alias v='vim'
alias vi='vim'
alias j="jobs -l"
alias psl='ps -aux | less'
alias ..='cd ..'
alias 'cd..'='cd ..'
alias df="df -h"
alias more='less'
alias du='du -h'
alias rs='rsync -W -ahvzi --progress'
# Alias para el su (root)
alias reboot="Sudo /sbin/reboot"
alias halt="Sudo /sbin/poweroff"
alias poweroff="Sudo /sbin/poweroff"
alias pacman="Sudo pacman"
alias paclean="Sudo pacman -S --clean --clean"
alias dpkg="Sudo dpkg"
# Alias del git
alias gia="git add"
alias gcm="git commit -a -m"
alias gs="git status"
alias gp="git Push"
alias gg="git pull"
alias Gd="git diff"
# Mis chuletas
alias chuleta="vim ~/.vim/doc/chuletario.txt"
alias todo="vim ~/work/ToDo.txt"
# Cambio colores de terminal
alias col_dark="sh ~/.config/termcolours/dark.sh"
alias col_light="sh ~/.config/termcolours/light.sh"
alias col_default="sh ~/.config/termcolours/default.sh"
# Wifi on/off
alias wifi_on="Sudo netctl start"
alias wifi_off="Sudo netctl stop"
alias wifi_status="iw dev wlan0 info"
alias wifi_menu="wifi-menu"
# App varias
alias mldonkey="mldonkey -stdout -verbosity verb"
alias netload="speedometer -r eth0 -t eth0"
alias ko="export DISPLAY=:0.0; Kodi &"
alias vbox="export DISPLAY=:0.0; virtualbox &"
alias vbox_start="export DISPLAY=:0.0; VBoxManage startvm"
alias vbox_ctrl="VBoxManage controlvm"
alias vbox_ls="VBoxManage list vms"
# SSH
alias pi="ssh electro7@pi"
alias pi_work="ssh electro7@pi"
#alias pi_work="ssh tunelia@pi_work"
alias nexus="ssh electro7@nexus"
alias casiopea="ssh electro7@casiopea"
#----------------------------------------------------------------------#
# Funiones propias
#----------------------------------------------------------------------#
# Cambiar a directorio obras
cdc() {
cd $(find /mnt/d/work/obras -maxdepth 3 -type d -name *$1* | tail -n 1)
}
# Arrancar y parar máquinas vituales de vbox
vbox_on() {
VBoxManage startvm $1 --type headless
}
vbox_off() {
VBoxManage controlvm $1 savestate
}
#----------------------------------------------------------------------#
# OTROS
#----------------------------------------------------------------------#
# Auto-completion
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
source /usr/share/bash-completion/bash_completion
Elif [ -f /etc/bash_completion ]; then
source /etc/bash_completion
fi
fi
# Man coloreador - hay que instalar less
man() {
env \
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
LESS_TERMCAP_md=$(printf "\e[1;31m") \
LESS_TERMCAP_me=$(printf "\e[0m") \
LESS_TERMCAP_se=$(printf "\e[0m") \
LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
LESS_TERMCAP_ue=$(printf "\e[0m") \
LESS_TERMCAP_us=$(printf "\e[1;32m") \
man "$@"
}
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xjvf $1 ;;
*.tar.gz) tar xzvf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar e $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xjvf $1 ;;
*.tgz) tar xzvf $1 ;;
*.Zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo "'$1' cannot be extracted via extract()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
# Para que a los VT100 no se les fastidie el terminal con los colores
if [ $TERM = vt100 ]; then
alias ls='ls -F --color=never';
fi
# Check umask
if [[ $(umask) != "0022" ]]; then umask 0022; fi
#----------------------------------------------------------------------#
# Jarvis
#----------------------------------------------------------------------#
export SYS="Debian"
#----------------------------------------------------------------------#
# SSH KEY
#----------------------------------------------------------------------#
# Borra temporal si existe
if [ `ps -ef | grep ssh-agent | grep -v grep | wc -l` -eq 0 ]; then
rm -f /tmp/ssh-agent*
fi
# attempt to connect to a running agent, sharing over sessions (PuTTY)
check-ssh-agent() {
[ -S "$SSH_AUTH_SOCK" ] && { ssh-add -l >& /dev/null || [ $? -ne 2 ]; }
}
check-ssh-agent || export SSH_AUTH_SOCK=/tmp/ssh-agent.sock_$USER
check-ssh-agent || eval "$(ssh-agent -s -a /tmp/ssh-agent.sock_$USER)" > /dev/null
#Add identities if not exist
if [[ -n $(ssh-add -l | grep 'The agent has no identities') ]] ; then
ssh-add 2> /dev/null
fi
# vim: ts=2:sw=2:
私はvim
を実行して次のコマンドを実行しました::PromptlineSnapshot ~/bin/Prompt_powerline.sh
。
rxvt
を開くと、次のコマンドが表示されます。
bash: Prompt_COMMAND: line 2: syntax error near unexpected token ";"
bash: Prompt_COMMAND: line 2: `; __promptadd;'
master > mast3r > ~ > 130 >
どうすれば解決できますか?
Prompt_COMMAND
が最初に設定されていないか空の場合、次の行
Prompt_COMMAND="$Prompt_COMMAND; __promptadd;"
に拡大する
Prompt_COMMAND="; __promptadd;"
および;
自体は有効なコマンドではありません。 set -x
を使用してデバッグをオンにすると、この動作を確認できます。
set -x
$ Prompt_COMMAND=""
+ Prompt_COMMAND=
$ Prompt_COMMAND="$Prompt_COMMAND; echo bar"
+ Prompt_COMMAND='; echo bar'
bash: Prompt_COMMAND: line 613: syntax error near unexpected token `;'
bash: Prompt_COMMAND: line 613: `; echo bar'
可能な回避策の1つは、Prompt_COMMAND
構文を使用して、${parameter:-Word}
変数にデフォルトの何もしないように設定することです。
$ Prompt_COMMAND="${Prompt_COMMAND:-:}; echo bar"
+ Prompt_COMMAND=':; echo bar'
++ :
++ echo bar
bar
こちらもご覧ください