diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-10-21 13:11:52 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-10-21 13:11:52 +0200 |
commit | ce308a8bae777e0c7019adb0bca82d5cac9eb086 (patch) | |
tree | 59d9cf56dc1021e4d03fcfd5c8c76ef1aa215901 /bashrc/common | |
parent | 26e619a342aa3495df9b358d110ff76b5b78eb41 (diff) | |
download | dotfiles-ce308a8bae777e0c7019adb0bca82d5cac9eb086.tar.gz dotfiles-ce308a8bae777e0c7019adb0bca82d5cac9eb086.tar.xz dotfiles-ce308a8bae777e0c7019adb0bca82d5cac9eb086.zip |
added custom scripts in dotfiles and added folder to path
Diffstat (limited to 'bashrc/common')
-rw-r--r-- | bashrc/common/alias.sh | 8 | ||||
-rw-r--r-- | bashrc/common/shopt.sh | 3 |
2 files changed, 3 insertions, 8 deletions
diff --git a/bashrc/common/alias.sh b/bashrc/common/alias.sh index 5d73269..c1e9b6b 100644 --- a/bashrc/common/alias.sh +++ b/bashrc/common/alias.sh @@ -34,14 +34,6 @@ mkcd() { mkdir -p $1 && cd $1 } -# encode files suitable for copy&paste into other terminals -copy() { - STR=$(tar cj $@ | perl -MMIME::Base64 -e 'print MIME::Base64::encode(join("", <>))' - ; exit $PIPESTATUS) || return $? - echo "cat << E=O=F | perl -MMIME::Base64 -e 'print MIME::Base64::decode(join(\"\", <>))' - | tar xj" - echo "$STR" - echo "E=O=F" -} - # create tarball of one directory mktar() { [[ -z "$1" ]] && return 1 diff --git a/bashrc/common/shopt.sh b/bashrc/common/shopt.sh index 07a796a..2e27c43 100644 --- a/bashrc/common/shopt.sh +++ b/bashrc/common/shopt.sh @@ -1,5 +1,8 @@ # bash configuration +# local programs +export PATH="${HOME}/.bash/bin:${PATH}"# + # basic search path for chdir export CDPATH=".:~" |