dotfiles/.bashrc

23 lines
545 B
Bash
Raw Permalink Normal View History

2017-03-31 13:54:00 +02:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
2017-08-07 17:36:51 +02:00
# Get's printed before executing a command. Not sure what to do with that yet.
#PS0='`date`\n'
2017-03-31 13:54:00 +02:00
alias ls='ls --color=auto'
alias grep='grep --color=auto'
2017-10-12 12:22:37 +02:00
alias digs='dig +short'
alias diff='diff --color=auto'
2018-03-29 13:03:26 +02:00
alias tcptest='ncat -v -w 1'
2019-11-20 14:37:21 +01:00
alias clock='while true; do tput clear; date +"%H : %M : %S" | figlet -W -c -t; sleep 1; done'
alias rm='rm -i'
2017-08-07 17:36:51 +02:00
PS1='[\u@\h \W]\$ '
2017-03-31 13:54:00 +02:00
export PATH=$PATH:/home/jpt/bin
2017-07-15 17:24:34 +02:00
export SSH_AUTH_SOCK=/home/jpt/keeagent.socket