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
Byobu Commands | |
============== | |
byobu Screen manager | |
Level 0 Commands (Quick Start) | |
------------------------------ | |
<F2> Create a new window |
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 | |
# | |
# Bash script using xargs to run Matlab and Octave jobs in parallel. | |
# | |
n_parruns=16 # Total number of runs. | |
n_parproc=3 # Number of simultaneous parallel processes. | |
# Define Matlab/Octave executable and main m-scipt file to run. | |
export runcmd='/mnt/c/Octave/Octave-4.2.1/bin/octave-cli.exe' |