Add some MS feeling.
This commit is contained in:
parent
0f115ffb75
commit
4860940bc1
17
.bashrc
17
.bashrc
|
@ -5,9 +5,24 @@
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *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 ls='ls --color=auto'
|
||||||
alias grep='grep --color=auto'
|
alias grep='grep --color=auto'
|
||||||
PS1='[\u@\h \W]\$ '
|
|
||||||
|
#PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
export PATH=$PATH:/home/jpt/bin
|
export PATH=$PATH:/home/jpt/bin
|
||||||
export SSH_AUTH_SOCK=/home/jpt/keeagent.socket
|
export SSH_AUTH_SOCK=/home/jpt/keeagent.socket
|
||||||
|
|
||||||
|
# Let's go Microsoft!
|
||||||
|
echo "Microsoft Windows [Version 10.0.15063]"
|
||||||
|
echo "(c) 2017 Microsoft Corporation. Alle Rechte vorbehalten."
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Prepare sed script
|
||||||
|
echo "s,/,\\\\,g" > .bashrc.sed
|
||||||
|
|
||||||
|
# Change prompt. :D
|
||||||
|
PS1='C:`pwd|sed -f ~/.bashrc.sed`>'
|
||||||
|
|
Loading…
Reference in New Issue