2020-11-15 00:20:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Clean up previous graphs
|
2021-03-31 13:56:20 +01:00
|
|
|
rm /home/jake/repos/dissertation/4-dissertation/4_Evaluation/Figs/graphs/* || true
|
2020-11-15 00:20:39 +00:00
|
|
|
rm /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/* || true
|
|
|
|
|
|
|
|
# Copy graphs for evaluation
|
2021-03-31 13:56:20 +01:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/*-inbound.png /home/jake/repos/dissertation/4-dissertation/4_Evaluation/Figs/graphs/
|
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/bidirectional-outbound.png /home/jake/repos/dissertation/4-dissertation/4_Evaluation/Figs/graphs/
|
2020-11-15 00:20:39 +00:00
|
|
|
|
|
|
|
# Copy graphs for outbound graphs appendix
|
2021-03-21 21:32:05 +00:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/*-outbound.png /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/
|
2020-11-15 00:20:39 +00:00
|
|
|
|