From 8918762a445852a989c717773f90b348fe827540 Mon Sep 17 00:00:00 2001 From: Ravi Tripathi <ravi89@uab.edu> Date: Tue, 14 Aug 2018 17:34:07 -0500 Subject: [PATCH] Adding example for each option with prep_env --- bash_array_jobs/README.md | 63 ++++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/bash_array_jobs/README.md b/bash_array_jobs/README.md index 3054d0f..9aab42c 100644 --- a/bash_array_jobs/README.md +++ b/bash_array_jobs/README.md @@ -16,38 +16,39 @@ The most basic method would be to create a [SLURM](https://docs.uabgrid.uab.edu/ * **prep_env**: An executable to create test environment to run the job scripts on, along with job error and job output directories. - Usage: ./prep_env {seq,rand.diff} - - seq: Create a test_dir with sequential file names. + Usage: ./prep_env {seq,rand.diff} + + seq: Create a test_dir with sequential file names. + Example: + └── test_dir + ├── test1 + ├── test2 + ├── test3 + ├── test4 + └── test5 + + rand: Create a test_dir with random file names. + Example: + └── test_dir + ├── CU4KT7 + ├── GEJ0IF + ├── LHZBSN + ├── MYODBC + └── X9E4T5 + + diff: Create a test_dir with random sub-directory names, and a file 'test' in each directory. Example: - └── test_dir - ├── test1 - ├── test2 - ├── test3 - ├── test4 - └── test5 - rand: Create a test_dir with random file names. - Example: - └── test_dir - ├── CU4KT7 - ├── GEJ0IF - ├── LHZBSN - ├── MYODBC - └── X9E4T5 - - diff: Create a test_dir with random sub-directory names, and a file 'test' in each directory. - Example: - └── test_dir - ├── 1DOVW8 - │  └── test - ├── 75DJ90 - │  └── test - ├── 7CWD36 - │  └── test - ├── FTG47D - │  └── test - └── L9D3C4 - └── test + └── test_dir + ├── 1DOVW8 + │  └── test + ├── 75DJ90 + │  └── test + ├── 7CWD36 + │  └── test + ├── FTG47D + │  └── test + └── L9D3C4 + └── test * **clean_env**: -- GitLab