[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Problem mit PATH Variable



Hi,

Kai Timmer schrieb:
und was genau??


Also hier mal meine /etc/profile

# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games"

if [ "$PS1" ]; then
  if [ "$BASH" ]; then
    PS1='\u@\h:\w\$ '
  else
    if [ "`id -u`" -eq 0 ]; then
      PS1='# '
    else
      PS1='$ '
    fi
  fi
fi

export PATH

umask 022

Dann hier noch meine .bashrc:
# ---- language-env DON'T MODIFY THIS LINE!
# settings for german speaking users

LANG=de_DE@euro
export LANG
LC_MESSAGES=de_DE@euro
LC_CTYPE=de_DE@euro
export LC_MESSAGES LC_CTYPE

if [ -d /usr/X11R6/lib/X11/nls ]; then
    XNLSPATH=/usr/X11R6/lib/X11/nls
    export XNLSPATH
fi

export MM_CHARSET=ISO-8859-15

#Path Erweiterung
PATH=/home/kai/scripts:$PATH; export PATH

#Digitech VHDL Programm
export SYMPHONYEDA="/usr/local/Simili22"
. "$SYMPHONYEDA/bin/init.sh"
                      ^^^^^^^
schau doch mal in diesen Script, ich denke mal, das der einiges umbaut.


#Sun-Java Path
export JAVA_HOME=/usr/local/j2sdk1.4.2_02
export PATH=$PATH:/usr/local/j2sdk1.4.2_02/bin

#IOTools fuer aup
export CLASSPATH=.:~/.java/Prog1Tools.zip:$CLASSPATH

# ---- language-env end DON'T MODIFY THIS LINE!
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If running interactively, then:
if [ "$PS1" ]; then

# don't put duplicate lines in the history. See bash(1) for more options
    # export HISTCONTROL=ignoredups

    # enable color support of ls and also add handy aliases
    eval `dircolors -b`
    alias ls='ls --color=auto'
    #alias dir='ls --color=auto --format=vertical'
    #alias vdir='ls --color=auto --format=long'

    # some more ls aliases
    #alias ll='ls -l'
    #alias la='ls -A'
    #alias l='ls -CF'

    # set a fancy prompt
    PS1='\u@\h:\w\$ '

    # If this is an xterm set the title to user@host:dir
    #case $TERM in
    #xterm*)
    #    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
    #    ;;
    #*)
    #    ;;
    #esac

    # enable programmable completion features (you don't need to enable
    # this, if it's already enabled in /etc/bash.bashrc).
    #if [ -f /etc/bash_completion ]; then
    #  . /etc/bash_completion
    #fi
fi



Gruss
Reinhold




Reply to: