This project help to execute the commond from client to run in server machine using TCP-SOCKET
you must have gcc compiler
sudo apt-get install gcc
sudo apt-get update
server
cd server
# compile the server.c file
gcc server.c
# run a.out file
./a.out
on client machine client
cd client
# compile the server.c file
gcc client.c
# run a.out file
./a.out
# enter server ip addresss
127.0.0.1
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.