hi....
i have made a java program, which is called inside a shell script.
Now the filename is to be supppiled as a command line argument to shell like
./nsdnet.sh ./nsdnet_file.csv
what i want is , this command line name should be interpreted as full path by the java code
like /dialp/Release/bin
and if we write
as
./nsdnet.sh ../nsdnet_file.csv
, then the filename should get expand to /dialp/Release/nsdnet_file.csv
is this possible?
plz help