SyntaxFix
Write A Post
Hire A Developer
Questions
Try this from your shell:
$ od -A n -t d -N 1 /dev/urandom
Here, -t d specifies that the output format should be signed decimal; -N 1 says to read one byte from /dev/urandom.
-t d
-N 1
/dev/urandom