I am running ./test 8080
script to run Test.class java file from terminal in Idea
//this is test.sh file
#!/bin/bash
# shellcheck disable=SC2068
java -classpath src/com/company Test $@
But I'm getting the following error Error: Could not find or load main class Test
I am not a bash guy I'm a new here but I would be grateful to know where the problem is?