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
![[Image: screen2.png]](https://preview.ibb.co/itwsb6/screen2.png)
Coz reverse stuff can be fun, lets do it in reverse -
An example
![[Image: screen3.png]](https://preview.ibb.co/kWDc9R/screen3.png)
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
![[Image: screen2.png]](https://preview.ibb.co/itwsb6/screen2.png)
Coz reverse stuff can be fun, lets do it in reverse -
Code:
tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n1
An example
![[Image: screen3.png]](https://preview.ibb.co/kWDc9R/screen3.png)
More to come