From 9d7aa4644718177679ea9028a18287c2eac6557f Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Mon, 19 Jan 2015 11:47:21 +0900 Subject: [PATCH] profile: Remove using function __match --- profile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/profile b/profile index 679d283..e03d065 100755 --- a/profile +++ b/profile @@ -40,10 +40,7 @@ export RUBYLIB="$RUBYLIB:$HOME/.local/lib/gems/lib" # http://superuser.com/questions/324613/installing-a-library-locally-in-home-directory-but-program-doesnt-recognize-it # without this ENV i cannot run tmux. another way is to use --disable-shared # when building tmux -if ! __match "$LD_LIBRARY_PATH" "$HOME/.local/lib" -then - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/.local/lib" -fi +export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/.local/lib" # in my environment powerdown does not work test -z "$DISPLAY" && test -z "$SSH_CONNECTION" && \ @@ -85,8 +82,8 @@ export GIT_EDITOR="$EDITOR" export GIT_MERGE_AUTOEDIT=no if test -n "$TMUX" && \ - __match $TERM screen && \ - __match `tmux display -p '#{client_termname}'` 256color + expr "$TERM" : screen && \ + expr "`tmux display -p '#{client_termname}'`" : '.*-256color$' then TERM=screen-256color fi @@ -105,10 +102,10 @@ then export TMP=/tmp fi fi -__match "$TMP" "${USER}-tmp" >/dev/null || TMP="${TMP}/${USER}-tmp" -test -d "$TMP" || mkdir -p "$TMP" +export TMP="${TMP}/${USER}-tmp" export TEMP=$TMP export TMPDIR=$TMP +test -d "$TMP" || mkdir -p "$TMP" if test -d ~/dbx then