diff options
Diffstat (limited to 'makepass.bash')
-rwxr-xr-x | makepass.bash | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/makepass.bash b/makepass.bash index 0ebc60b..04d4f49 100755 --- a/makepass.bash +++ b/makepass.bash @@ -1,20 +1,16 @@ #!/usr/bin/env bash -# Filename: ~/bin/makepass +# Filename: makepass.bash # 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: Email <idgatt@dnns.no> -# License: This file is licensed under the GPL v2. +# Bug-Reports: Email <git@dnns.no> +# License: This file is licensed under the BSD 3-Clause license. ################################################################################ # This file takes randomness from /dev/urandom and turns it into random # passwords. -################################################################################ +################################################################################ -# Copyright (c) 2018 Dennis Eriksen • d@ennis.no +# Copyright (c) 2018-2023 Dennis Eriksen • d@ennis.no # makepass-function function makepass { @@ -56,4 +52,4 @@ function makepass { makepass "${@:-}" ## END OF FILE ################################################################# -# vim:syntax=sh filetype=sh +# vim:syntax=bash filetype=bash |