summaryrefslogtreecommitdiff
path: root/99_Debug.zsh
diff options
context:
space:
mode:
authorhugues <hugues@a0e5b806-a6f9-0310-978d-cbce73f8a913>2006-06-10 17:42:08 +0000
committerHugues Hiegel <hugues@hiegel.fr>2008-03-07 14:15:07 +0100
commite9b8eaeb8570eaf21edd24f66db03224f65cd788 (patch)
treeee9365c4b9d95ae1f1c69db5d6d854072481d6f2 /99_Debug.zsh
parenta3fe1fc96893437cf9166cd9a676d092b3baaf17 (diff)
Zsh power !!
git-svn-id: svn+ssh://hugues@maison/opt/svn/private/hugues@242 a0e5b806-a6f9-0310-978d-cbce73f8a913
Diffstat (limited to '99_Debug.zsh')
-rw-r--r--99_Debug.zsh48
1 files changed, 0 insertions, 48 deletions
diff --git a/99_Debug.zsh b/99_Debug.zsh
deleted file mode 100644
index 9c73868..0000000
--- a/99_Debug.zsh
+++ /dev/null
@@ -1,48 +0,0 @@
-
-cd_back() {
- for folder in $@
- do
- cd $(echo $folder | sed "s:[^/]\+:..:g")
- done
-}
-
-ldd()
-{
- LDD=$(dlocate ldd | egrep "bin/ldd$" | head -n1 | cut -d' ' -f2)
- $LDD $@ | sed "s/\(.*local.*\)/\1/;s/\(.*not found.*\)/\1/" | tr -d ' '
-}
-
-exports()
-{
- if ( [ $# -ne 0 ] )
- then
- if ( [ $1 != "-" ] )
- then
- export LD_LIBRARY_PATH=${1}/lib
- export PKG_CONFIG_PATH=$LD_LIBRARY_PATH/pkgconfig
- export ACLOCAL_FLAGS="-I ${1}/share/aclocal"
- else
- unset LD_LIBRARY_PATH
- unset PKG_CONFIG_PATH
- unset ACLOCAL_FLAGS
- fi
- fi
-
- for i in LD_LIBRARY_PATH PKG_CONFIG_PATH ACLOCAL_FLAGS
- do
- if ( [ ! -z ${(P)i} ] ) ; then
- echo "$i: "${(P)i}""
- else
- echo "$i is unset."
- fi
- done
-}
-
-precmd()
-{
- if ( [ "$DEBUG_MODE" = "yes" ] )
- then
- exports
- fi
-}
-