15 lines
720 B
Bash
15 lines
720 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Clean up previous graphs
|
|
rm /home/jake/repos/dissertation/4-dissertation/4_Evaluation/Figs/graphs/* || true
|
|
rm /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/* || true
|
|
|
|
# Copy graphs for evaluation
|
|
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/
|
|
|
|
# Copy graphs for outbound graphs appendix
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/*-outbound.png /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/
|
|
|