01-31-2018, 06:59 PM
Another way to do this but without saving it as a function, eg; you will need to type it in each time.
Is to type into your terminal
An example
Coz reverse stuff can be fun, lets do it in reverse -
An example
More to come
Is to type into your terminal
Code:
< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo;
An example
Coz reverse stuff can be fun, lets do it in reverse -
Code:
tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n1
An example
More to come