Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 166 Bytes

File metadata and controls

9 lines (8 loc) · 166 Bytes

Bash Cheat Sheet

Commonly used console commands.

Generate Random Printable Characters

get_devrand () {
tr -cd "[:graph:]" < /dev/random | head -c 255
}