15 lines
714 B
Bash
15 lines
714 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Clean up previous graphs
|
||
|
rm /home/jake/repos/dissertation/4-dissertation/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/graphs/I* /home/jake/repos/dissertation/4-dissertation/Evaluation/Figs/graphs/
|
||
|
cp /home/jake/repos/dissertation/3-evaluation/graphs/OEyS0-R0-2R1-2T10S1-R0-1R1-2T10S2-R0-1R1-1T10.png /home/jake/repos/dissertation/4-dissertation/Evaluation/Figs/graphs/
|
||
|
|
||
|
# Copy graphs for outbound graphs appendix
|
||
|
cp /home/jake/repos/dissertation/3-evaluation/graphs/O* /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/
|
||
|
|