Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. word=$1
  2.  
  3. echo $word | fold -w 1 > tmpfile.1
  4.  
  5. > tmpfile.2
  6. for x in $(seq 73000)
  7. do
  8. new=$(cat tmpfile.1 | sort --random-sort | tr -d "\n")
  9. echo $new >> tmpfile.2
  10. done
  11.  
  12. cat tmpfile.2 | sort -u
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement