23 lines
545 B
Bash
23 lines
545 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
# Get's printed before executing a command. Not sure what to do with that yet.
|
|
#PS0='`date`\n'
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias digs='dig +short'
|
|
alias diff='diff --color=auto'
|
|
alias tcptest='ncat -v -w 1'
|
|
alias clock='while true; do tput clear; date +"%H : %M : %S" | figlet -W -c -t; sleep 1; done'
|
|
alias rm='rm -i'
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
export PATH=$PATH:/home/jpt/bin
|
|
export SSH_AUTH_SOCK=/home/jpt/keeagent.socket
|