aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Eriksen <d@ennis.no>2018-05-14 20:48:25 +0200
committerDennis Eriksen <d@ennis.no>2018-05-14 20:48:25 +0200
commit760d4dc694b9ec45ae63c57dbfb50b064118a087 (patch)
tree759f70883941dabbcf5faacd44707e91962a11c7
parentmoving around stuff (diff)
downloadmakepass-760d4dc694b9ec45ae63c57dbfb50b064118a087.tar.gz
Adding a license.
I'm going with GPLv2 simply because I'm planning on stealing a few bits from GRML :)
-rwxr-xr-xbin/bin/makepass16
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