Created
September 12, 2018 08:51
-
-
Save TakashiHarada/1b0d7a703e0a5aadf5661eb8f17ac6e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash - | |
n=5 | |
m=10 | |
# m=1 | |
for (( i = 1; i <= n; i += 1 )) | |
do | |
for (( j = 1; j <= m; j +=1 )) | |
do | |
sh ZOMList.sh SA DA SP DP PROT $((i*1000)) ipc2_seed $((1000/i)) r_ipc_${i}_${j} h_ipc_${i}_${j} | |
mv r_ipc_${i}_${j} ~/harada/report/paper/crbt/rules | |
mv h_ipc_${i}_${j} ~/report/paper/crbt/headers | |
sh ZOMList.sh SA DA SP DP PROT $((i*1000)) fw2_seed $((1000/i)) r_fw_${i}_${j} h_fw_${i}_${j} | |
mv r_fw_${i}_${j} ~/report/paper/crbt/rules | |
mv h_fw_${i}_${j} ~/report/paper/crbt/headers | |
sh ZOMList.sh SA DA SP DP PROT $((i*1000)) acl2_seed $((1000/i)) r_acl_${i}_${j} h_acl_${i}_${j} | |
mv r_acl_${i}_${j} ~/report/paper/crbt/rules | |
mv h_acl_${i}_${j} ~/report/paper/crbt/headers | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment