aboutsummaryrefslogtreecommitdiffstats
path: root/P1
diff options
context:
space:
mode:
Diffstat (limited to 'P1')
-rwxr-xr-xP1/clean.sh2
-rwxr-xr-xP1/run.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/P1/clean.sh b/P1/clean.sh
new file mode 100755
index 0000000..9261690
--- /dev/null
+++ b/P1/clean.sh
@@ -0,0 +1,2 @@
+#!/bin/bash
+cd solutionexe/ && make clean && cd .. && make clean
diff --git a/P1/run.sh b/P1/run.sh
new file mode 100755
index 0000000..6b901ae
--- /dev/null
+++ b/P1/run.sh
@@ -0,0 +1,2 @@
+#!/bin/bash
+make && cp mapper solutionexe/mapper && cp mapreduce solutionexe/mapreduce && cd solutionexe/ && make run && cp mapper.good mapper && cp mapreduce.good mapreduce && cd ..