💾 Archived View for runjimmyrunrunyoufuckerrun.com › rc › shuffle.awk captured on 2021-12-17 at 13:26:06.

View Raw

More Information

-=-=-=-=-=-=-

#!/bin/awk -f
BEGIN{srand}
{l[n++] = $0}
END{
	while(n){
		i = int(rand() * --n)
		print l[i]
		l[i] = l[n]
	}
}