💾 Archived View for runjimmyrunrunyoufuckerrun.com › rc › shuffle.awk captured on 2022-01-08 at 13:55:41.

View Raw

More Information

⬅️ Previous capture (2021-12-17)

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

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