Skip to content

Instantly share code, notes, and snippets.

@Ttech
Created February 9, 2015 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ttech/b1bab94a98b03769400f to your computer and use it in GitHub Desktop.
Save Ttech/b1bab94a98b03769400f to your computer and use it in GitHub Desktop.
#!/bin/bash
for c in `seq 1 200`;
do
echo -e "\u$RANDOM\b" | tr -d '\n'
done
@airencracken
Copy link

for c in {1..200}; do
echo -en "\u$RANDOM\b"
done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment