1
0

testing.sh 438 B

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