<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body>
    
<div>Heya folks, </div><div><br></div><div>This may seem really simple to some and it is fairly simple from the terminal using bash of generation and sorting (examples below)</div><div><br></div><div>What I would like to do, to get started with making a program to run in MPI on my cluster.. I thought of a fairly simple bash script and this works fine for a single machine but what is the best way to go around it or converting this simple notion in to an MPI runable command.</div><div><br></div><div>Generates random strings of chars:</div><div>$ tr -cd '[upper:]' < /dev/random | fold -w9 | head -c${1:-1000} | tee somefile.txt</div><div><br></div><div>Removes duplicate lines:</div><div>$ sort filename.txt | uniq</div><div><br></div><div>This is fine for generation as I mention for a single machine, but what's the best way to turn this around and use MPI with a shared NFS mounted filesystem..</div><div><br></div><div>While this is an example im going to generate a bash script to allow me to generate every possible permutation of a desired string length along with types of chars a-z, A-Z, 0-9 along with symbols..</div><div><br></div><div>So any advice is welcome really and it's just an educational way for me to transpire into generating code that can be used within my small beowulf.</div><div><br></div><div id="composer_signature"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><div><div>> Kind regards,<br>> Darren Wise Esq.</div><div>><br>> <a href="http://www.wisecorp.co.uk">www.wisecorp.co.uk</a></div><div>> <a href="http://www.wisecorp.co.uk/babywise">www.wisecorp.co.uk/babywise</a><br>> <a href="http://www.darrenwise.co.uk">www.darrenwise.co.uk</a></div></div></div></body></html>