Quick actions

cmd+k|ctrl+k

Navigation

Languages

GodWords1000

Snippet info

Language

Bash

Visibility

public

Author

tdavis

Created

2017-01-27T06:22:23Z

Updated

2017-01-27T06:31:47Z

#!/bin/bash

#This prints random words from the 1000 most common english words.

echo "$(shuf -n 32 ./Words1000.TXT --random-source=/dev/urandom | tr '\n' ' ')"
INFO