bugfix absolute path when sourcing ; md functo mkdir and cd to it
This commit is contained in:
parent
6a9b27e1af
commit
1041377153
1 changed files with 8 additions and 3 deletions
11
.bashrc
11
.bashrc
|
|
@ -18,9 +18,6 @@ function noproxy()
|
|||
export ftp_proxy=""
|
||||
}
|
||||
|
||||
# Super nice prompt
|
||||
source .prompt.bash
|
||||
|
||||
# Prevents accidentally clobbering files.
|
||||
alias mv='mv -i'
|
||||
alias mkdir='mkdir -p'
|
||||
|
|
@ -136,6 +133,14 @@ alias cgcc="colout :[0-9]+: yellow standard | colout error | colout warning mage
|
|||
|
||||
alias bepo="setxkbmap -layout fr -variant bepo -option"
|
||||
|
||||
function md() {
|
||||
mkdir $1
|
||||
cd $1
|
||||
}
|
||||
|
||||
# Super nice prompt
|
||||
source ~/.prompt.bash
|
||||
|
||||
# Added by autojump install.sh
|
||||
#source /etc/profile.d/autojump.bash
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue