Guest User

Untitled

a guest
Dec 14th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 #get only one line (hash)
  2. cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | tee file.txt #keep output unique lines till you stop it
  3.  
  4. sort file.txt | uniq > ufile.txt # remove duplicates lines from a file
  5. wc -l #get number of lines in a file
Add Comment
Please, Sign In to add comment