(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| #!/bin/bash | |
| DATA=(10 20 30 40 50 60 70 80 90 100) | |
| DATA_LEN=$[ ${#DATA[*]} - 1 ] | |
| TIME_OUT=22 | |
| execution=0 # Count total number of cycles | |
| result=1 # initialized as failed | |
| start_time=$(date +%s) |