diff --git a/README.md b/README.md
index 7ee88f4d872c64e82d2e33dfa5a9fd4bc8dae8c5..aea7694efb5dffe3cf6a8fec007bb3b647468da0 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,10 @@
 This repository contains a variety of examples of parallelism.
 
-MATLAB
-in the example script provided, "parforExample.m", the "for" command can be switched between "for" and "parfor". Changing to "parfor" will ask MATLAB to parallelize the loop if possible. In MATLAB r2018a, parpool is called by MATLAB with 12 threads as default if parfor is used without first calling parpool.
+BASH script and Array Jobs
+Please go to directory bash_array_jobs, for more information on bash scripting and array jobs.  
 
-R
+MATLAB  
+in the example script provided, "parforExample.m", the "for" command can be switched between "for" and "parfor". Changing to "parfor" will ask MATLAB to parallelize the loop if possible. In MATLAB r2018a, parpool is called by MATLAB with 12 threads as default if parfor is used without first calling parpool.  
+
+R  
 The text in Rparallel.txt is a set of R commands to be used to test out one version of parallelism in R.