123456789101112 |
- #!/bin/bash
- # use the revek connection from some unrelated project to transfer from the isolated server to a testing server
- rsync -cave 'ssh -S ~/rpivid-profiling/.socket-pi@localhost-port-40100' ~/VS_CODE/Qwixx/network-stuff '':/home/pi/
- # on the testing server, compile
- : "gcc -c http-server/http-server.c; gcc -c server.c;gcc web-demo.c http-server.o server.o";
- # then run
- : "./a.out";
- # on the isolated server edit code if needed
|