diff --git a/execution/README.md b/execution/README.md
index 89a851a9c8bafd29a4232f142e7b0da8b88c1132..af4caaa80db9cbf6459813f7c1c9330ad7769fda 100644
--- a/execution/README.md
+++ b/execution/README.md
@@ -142,10 +142,10 @@ Depending on your setup, some additional adjustments may be necessary:
 
 ## Execution
 
-The `./run_loop.sh` is the entrypoint for all benchmark executions. Is has to be called as follows:
+The `./theodolite.sh` is the entrypoint for all benchmark executions. Is has to be called as follows:
 
 ```sh
-./run_loop.sh <use-case> <wl-values> <instances> <partitions> <cpu-limit> <memory-limit> <commit-interval> <duration>
+./theodolite.sh <use-case> <wl-values> <instances> <partitions> <cpu-limit> <memory-limit> <commit-interval> <duration>
 ```
 
 * `<use-case>`: Stream processing use case to be benchmarked. Has to be one of `1`, `2`, `3` or `4`.
diff --git a/execution/run_uc1-new.sh b/execution/run_uc1.sh
similarity index 100%
rename from execution/run_uc1-new.sh
rename to execution/run_uc1.sh
diff --git a/execution/run_uc2-new.sh b/execution/run_uc2.sh
similarity index 100%
rename from execution/run_uc2-new.sh
rename to execution/run_uc2.sh
diff --git a/execution/run_uc3-new.sh b/execution/run_uc3.sh
similarity index 100%
rename from execution/run_uc3-new.sh
rename to execution/run_uc3.sh
diff --git a/execution/run_uc4-new.sh b/execution/run_uc4.sh
similarity index 100%
rename from execution/run_uc4-new.sh
rename to execution/run_uc4.sh
diff --git a/execution/run_loop.sh b/execution/theodolite.sh
similarity index 88%
rename from execution/run_loop.sh
rename to execution/theodolite.sh
index b139ad6ff3e1950baa3d7f4579f574f7231ecb5f..18a6b67a9c321cd1c0ecebca405169ec5b8ade46 100755
--- a/execution/run_loop.sh
+++ b/execution/theodolite.sh
@@ -35,7 +35,7 @@ do
     do
         SUBEXPERIMENT_COUNTER=$((SUBEXPERIMENT_COUNTER+1))
         echo "Run subexperiment $SUBEXPERIMENT_COUNTER/$SUBEXPERIMENTS with config: $DIM_VALUE $REPLICA"
-        ./run_uc$UC-new.sh $EXP_ID $DIM_VALUE $REPLICA $PARTITIONS $CPU_LIMIT $MEMORY_LIMIT $KAFKA_STREAMS_COMMIT_INTERVAL_MS $EXECUTION_MINUTES
+        ./run_uc$UC.sh $EXP_ID $DIM_VALUE $REPLICA $PARTITIONS $CPU_LIMIT $MEMORY_LIMIT $KAFKA_STREAMS_COMMIT_INTERVAL_MS $EXECUTION_MINUTES
         sleep 10s
     done
 done