Compare commits
No commits in common. "7e43c9f1cca286552dd9c4481fef6f8c6f53440d" and "d32d68c6a165471ef60c6df79ba5619362b09bca" have entirely different histories.
7e43c9f1cc
...
d32d68c6a1
35
LICENSE
35
LICENSE
@ -1,17 +1,24 @@
|
|||||||
Copyright (C) 2024 Nicolás A. Ortega Froysa <nicolas@ortegas.org>
|
This is free and unencumbered software released into the public domain.
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
warranty. In no event will the authors be held liable for any damages
|
distribute this software, either in source code form or as a compiled
|
||||||
arising from the use of this software.
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
Permission is granted to anyone to use this software for any purpose,
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
including commercial applications, and to alter it and redistribute it
|
of this software dedicate any and all copyright interest in the
|
||||||
freely, subject to the following restrictions:
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
1. The origin of this software must not be misrepresented; you must not
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
claim that you wrote the original software. If you use this software
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
in a product, an acknowledgment in the product documentation would be
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
appreciated but is not required.
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
2. Altered source versions must be plainly marked as such, and must not be
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
misrepresented as being the original software.
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
3. This notice may not be removed or altered from any source distribution.
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <http://unlicense.org/>
|
||||||
|
13
README
Normal file
13
README
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
==========
|
||||||
|
*** d6 ***
|
||||||
|
==========
|
||||||
|
A diceware password generator written in Bash. I believe I've written
|
||||||
|
one before, also called 'd6', but I can't find it anywhere, so I wrote a
|
||||||
|
new one. I'm too lazy to write a real README for this, so just use the
|
||||||
|
`-h` option. To install it just run the `install` command, which is all
|
||||||
|
any Makefile really does anyway. Don't know how to use it? Use the
|
||||||
|
manual page.
|
||||||
|
|
||||||
|
This project is licensed with the Unlicense, because it's literally just
|
||||||
|
something I whipped up in less than an hour. Feel free to use it however
|
||||||
|
you want, just remember that it comes without warranty of any kind.
|
@ -1,7 +0,0 @@
|
|||||||
# d6
|
|
||||||
|
|
||||||
A diceware password generator written in Bash. I believe I've written one
|
|
||||||
before, also called 'd6', but I can't find it anywhere, so I wrote a new one.
|
|
||||||
I'm too lazy to write a real README for this, so just use the `-h` option. To
|
|
||||||
install it just run the `install` command, which is all any Makefile really
|
|
||||||
does anyway. Don't know how to use it? Use the manual page.
|
|
38
d6.sh
38
d6.sh
@ -1,26 +1,28 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# This is free and unencumbered software released into the public domain.
|
||||||
# Copyright (C) 2024 Nicolás Ortega Froysa <nicolas@ortegas.org> All rights reserved.
|
|
||||||
# Author: Nicolás Ortega Froysa <nicolas@ortegas.org>
|
|
||||||
#
|
#
|
||||||
# This software is provided 'as-is', without any express or implied
|
# Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
# warranty. In no event will the authors be held liable for any damages
|
# distribute this software, either in source code form or as a compiled
|
||||||
# arising from the use of this software.
|
# binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
# means.
|
||||||
#
|
#
|
||||||
# Permission is granted to anyone to use this software for any purpose,
|
# In jurisdictions that recognize copyright laws, the author or authors
|
||||||
# including commercial applications, and to alter it and redistribute it
|
# of this software dedicate any and all copyright interest in the
|
||||||
# freely, subject to the following restrictions:
|
# software to the public domain. We make this dedication for the benefit
|
||||||
|
# of the public at large and to the detriment of our heirs and
|
||||||
|
# successors. We intend this dedication to be an overt act of
|
||||||
|
# relinquishment in perpetuity of all present and future rights to this
|
||||||
|
# software under copyright law.
|
||||||
#
|
#
|
||||||
# 1. The origin of this software must not be misrepresented; you must not
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
# claim that you wrote the original software. If you use this software
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
# in a product, an acknowledgment in the product documentation would be
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
# appreciated but is not required.
|
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
# OTHER DEALINGS IN THE SOFTWARE.
|
||||||
#
|
#
|
||||||
# 2. Altered source versions must be plainly marked as such, and must not be
|
# For more information, please refer to <http://unlicense.org/>
|
||||||
# misrepresented as being the original software.
|
|
||||||
#
|
|
||||||
# 3. This notice may not be removed or altered from any source
|
|
||||||
# distribution.
|
|
||||||
|
|
||||||
VERSION="1.0"
|
VERSION="1.0"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user