aboutsummaryrefslogtreecommitdiffstats
path: root/P1
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2020-10-05 20:07:50 -0500
committerMatt Strapp <strap012@umn.edu>2020-10-05 20:07:50 -0500
commitd889f5c1cd0a00c850063ba9f90a7a3e86cd4856 (patch)
tree6f7cc2c101005e50de454545d84a52ae9cffe02b /P1
parentAdd a define (diff)
downloadcsci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.tar
csci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.tar.gz
csci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.tar.bz2
csci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.tar.lz
csci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.tar.xz
csci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.tar.zst
csci4061-d889f5c1cd0a00c850063ba9f90a7a3e86cd4856.zip
Add shell scripts
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 ..