fix deleting screw up

pull/41/head
Jesus de Mula Cano 2011-03-07 00:18:05 +01:00
parent 8cc74becc0
commit cced72742f
1 changed files with 8 additions and 0 deletions

View File

@ -11,11 +11,19 @@ function myip {
echo "Your public IP is: ${bold_green} $res ${normal}"
}
# Make a directory and immediately 'cd' into it
function mkcd(){
mkdir -p "$*"
cd "$*"
}
# Search through directory contents with grep
function lsgrep(){
ls | grep "$*"
}
# View man documentation in Preview
pman () {
man -t "${1}" | open -f -a $PREVIEW