I have a question regarding server/client running on the command line. The server should be run something like this
Server should run with a command line passing port number
java Server port_number
Client should run with command line as following format:
java Client serverIP server_port_number commandFile
I was wondering if someone could show me an example of what the beginning of the "main method" should look like in both server/client to properly satisfy/take in these arguments when run on the command line.