You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sshrc/bashrc.jssh

26 lines
868 B
Plaintext

export SHELL=/bin/bash
[ -d /etc/update-motd.d ] && run-parts /etc/update-motd.d
[ -r /etc/motd ] && cat /etc/motd
[ -r /etc/profile ] && source /etc/profile
[ -r /etc/bash.bashrc ] && source /etc/bash.bashrc
3 years ago
HISTCONTROL=ignoreboth
shopt -s histappend
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
alias ll='ls -alF'
alias la='ls -A'
3 years ago
alias l='ls -CF'
alias sl='ls'
[ -x $JSSHHOME/sshrc.jssh ] && alias jssh="$JSSHHOME/sshrc.jssh"
[ -r $JSSHHOME/screenrc.jssh ] && alias screen="screen -c $JSSHHOME/screenrc.jssh"
[ -r $JSSHHOME/vimrc.jssh ] && export VIMINIT="let \$MYVIMRC='$JSSHHOME/vimrc.jssh' | source \$MYVIMRC"
PROMPT_COMMAND=__prompt_command
__prompt_command() {
local curr_exit="$?"
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
if [ "$curr_exit" != 0 ]; then
PS1="[$curr_exit]$PS1"
fi
}
3 years ago
set -o vi
export EDITOR='vim'