Zitat aus John R Pierce's Nachricht :
> On 3/29/2016 12:16 PM, M. Dietrich wrote:
>> Zitat aus Nithin Chakravarthi's Nachricht :
>>> *"export
>>> CLASSPATH=./Server.jar:~/Downloads/postgresql-9.3-1103.jdbc3.jar"*
>> java does not expand the "~" denoting your home dir, use `pwd`
>> instead to let the shell do that or name the full filename
>> with absolute directory.
> I'd suggest:
>
> export CLASSPATH=./Server.jar:$HOME/Downloads/postgresql-9.3-1103.jdbc3.jar
>
> that $HOME will get expanded when the 'set' is being done, so the value
> of $CLASSPATH will contain ...:/home/whatever/Downloads/...
correct, pwd does not do the job, sorry ;)