From 141cd7920fb335450ea23ef954b4882809dddcbc Mon Sep 17 00:00:00 2001 From: Ravi Tripathi <ravi89@uab.edu> Date: Tue, 14 Aug 2018 09:30:27 -0500 Subject: [PATCH] Added PWD variable for root path, rather then a hardcoded path --- PART_1/bash_parallel_script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PART_1/bash_parallel_script b/PART_1/bash_parallel_script index c005bae..43d20a8 100755 --- a/PART_1/bash_parallel_script +++ b/PART_1/bash_parallel_script @@ -1,7 +1,7 @@ #!/bin/bash # Add all the required variables here -root_dir="/data/user/ravi89/Projects/Tutorial_parallelism/PART_1" +root_dir="$PWD" data_dir="$root_dir/test_dir" jobs_dir="$root_dir/jobs" jobs_out_dir="$root_dir/jobs_out" -- GitLab