Initial commit

This commit is contained in:
2017-11-17 11:52:51 +01:00
commit 0b36708720
2 changed files with 20 additions and 0 deletions

3
random-password Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
LENGTH=${1:-32}
cat /dev/urandom | tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' | fold -w $LENGTH | head -n 1 | grep -i '[!@#$%^&*()_+{}|:<>?=]'