How to set the classpath to the current directory and also run the jar file named load.jar present in the current directory by providing the argument as load=
load.jar
load=
copy your file in linux Java directory
cp yourfile.jar /java/bin
open the directory
cd /java/bin
and execute your file
./java -jar yourfile.jar
or all in one try this command:
/java/bin/java -jar jarfilefolder/jarfile.jar