diff options
-rwxr-xr-x | bin/bin/makepass | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/bin/makepass b/bin/bin/makepass index cd29da8..52728f7 100755 --- a/bin/bin/makepass +++ b/bin/bin/makepass @@ -1,4 +1,19 @@ #!/usr/bin/env zsh +# Filename: ~/bin/makepass +# Purpose: Creating random passwords. +# Authors: Dennis Eriksen <d@ennis.no> +# Some parts have been shamelessly stolen from other places. +# These parts will normally have a comment saying where it's +# from. For instance, this header format is stolen from the +# GRML-team (grml.org). +# Bug-Reports: see https://github.com/dennisse/idgatt/issues +# License: This file is licensed under the GPL v2. +################################################################################ +# This file takes randomness from /dev/urandom and turns it into random +# passwords. +################################################################################ + + # Copyright (c) 2018 Dennis Eriksen • d@ennis.no # makepass-function @@ -19,4 +34,5 @@ function makepass { makepass "${@:-}" +## END OF FILE ################################################################# # vim:syntax=sh filetype=sh |