comparison .bashrc @ 189:b2dc752234ae

At least Milton's 'bash' doesn't grok ;& syntax
author Steve Huston <huston@srhuston.net>
date Sat, 04 Apr 2020 16:05:19 -0400
parents a05016e4881b
children 954d25f20123
comparison
equal deleted inserted replaced
188:a05016e4881b 189:b2dc752234ae
44 PROMPT_COMMAND='history -a ; echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"' 44 PROMPT_COMMAND='history -a ; echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
45 ;; 45 ;;
46 screen.xterm-256color) 46 screen.xterm-256color)
47 # Specifically, to hell with this one 47 # Specifically, to hell with this one
48 export TERM=screen 48 export TERM=screen
49 ;& 49 # Copied from below because the Mac's bash doesn't grok ;& as a
50 # passthrough
51 PROMPT_COMMAND="history -a"
52 ;;
50 screen*) 53 screen*)
51 # But if it's a screen window, leave it alone please 54 # But if it's a screen window, leave it alone please
52 PROMPT_COMMAND="history -a" 55 PROMPT_COMMAND="history -a"
53 ;; 56 ;;
54 *) 57 *)