summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-03-26 17:30:42 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-03-26 17:30:42 -0300
commit82a6f374485989431754b63500a9db2a5f9cda3f (patch)
treeb63adb8221a4011d38b5335c384297b4392bb058
parent4999894d546b8b91092cddde6b373b66184ec9bb (diff)
downloadcode-82a6f374485989431754b63500a9db2a5f9cda3f.tar.gz
code-82a6f374485989431754b63500a9db2a5f9cda3f.tar.bz2
code-82a6f374485989431754b63500a9db2a5f9cda3f.zip
Fixed bug in process script
-rwxr-xr-xprocess_correlations.sh2
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