>
> what the ouput of :
>
> -$ mkpath /usr/java/lib
>
> ?

In this (somewhat contrived) example it is:

        /usr/java/lib/dt.jar:/usr/java/lib/htmlconverter.jar:/usr/java/lib/tools.jar

It's just a list of jar files formatted for classpath, infact 
here's the mkpath script:

        #!/bin/bash
        IFS=':'
        echo "$*"


Reply via email to