run config file in server for each user
hello all
I have a Linux server and many terminals. In this server, I have a java application. From a terminal, an user can login into this server. When an user login, he will be at his folder called /home/username. He then run the Java application from his terminal. When the application run, it MUST open a config file for this user in his folder "username". So if ANOTHER user also run this application in the server from his terminal, the application will open the config file for ANOTHER user.
I am thinking that I can put the Java application in the server path, so all users can run the application from their terminals by using simple command regardless to the location of the application.
java -jar theApplication.jar
But I donot know how to do sothe application can find config file for each user.
How I can do that ?
Thanks
suhu

