diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-26 17:30:42 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-26 17:30:42 -0300 |
commit | 82a6f374485989431754b63500a9db2a5f9cda3f (patch) | |
tree | b63adb8221a4011d38b5335c384297b4392bb058 | |
parent | 4999894d546b8b91092cddde6b373b66184ec9bb (diff) | |
download | code-82a6f374485989431754b63500a9db2a5f9cda3f.tar.gz code-82a6f374485989431754b63500a9db2a5f9cda3f.tar.bz2 code-82a6f374485989431754b63500a9db2a5f9cda3f.zip |
Fixed bug in process script
-rwxr-xr-x | process_correlations.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_correlations.sh b/process_correlations.sh index 0fe006e..b33fde5 100755 --- a/process_correlations.sh +++ b/process_correlations.sh @@ -1,3 +1,3 @@ #!/bin/bash -for T0 in 1 10 100 1000 10000; do for file in $(ls *.dat); do ../code/correlations -N $(echo $file | cut -d_ -f1) -E $(echo $file | cut -d_ -f2) -T 100 -0 0 -t $(echo $file | cut -d_ -f3) -w $(echo $file | cut -d_ -f4) -i $(echo $file | cut -d_ -f5 | cut -d. -f1); done; done +for T0 in 1 10 100 1000 10000; do for file in $(ls *.dat); do ../code/correlations -N $(echo $file | cut -d_ -f1) -E $(echo $file | cut -d_ -f2) -T 100 -0 $T0 -t $(echo $file | cut -d_ -f3) -w $(echo $file | cut -d_ -f4) -i $(echo $file | cut -d_ -f5 | cut -d. -f1); done; done |