Merge branch 'master' of gitosis@majnematic.com:davesdots

This commit is contained in:
David Alexander Majnemer 2009-03-19 18:53:03 -05:00
commit 0da07d9205
2 changed files with 9 additions and 3 deletions

View file

@ -31,11 +31,14 @@ extract ()
*.tar)
tar xf "${1}"
;;
*.tar.gz|*.tgz|*.tar.z)
tar zxf "${1}"
*.tar.gz|*.tgz)
gunzip -c "${1}" | tar xf -
;;
*.tar.z)
uncompress -c "${1}" | tar xf -
;;
*.tar.bz2|*.tbz2)
tar jxf "${1}"
bzcat "${1}" | tar xf -
;;
*.zip|*.jar)
unzip -qo "${1}"

View file

@ -7,6 +7,9 @@ vbell on
# default scrollback to 5000 lines
defscrollback 5000
# when in history mode, use incremental searching
markkeys "^S=/:^R=?"
# turn off visual bell
termcapinfo * vb@