A simple password manager using age written in POSIX sh.

Ricardo García Jiménez e368c162ad fix: Elimina "_" del patrón por defecto vor 6 Monaten
COPYING 4dd68f2d43 docs: Agrega notas de la licencia de Dylan Araps vor 6 Monaten
README.md 8aeb8acb00 docs: Agrega age en la sección de dependencias del archivo README.md vor 6 Monaten
page e368c162ad fix: Elimina "_" del patrón por defecto vor 6 Monaten

README.md

page

A simple password manager using age written in POSIX sh.

A pash gpg fork to age.

Dependencies

Installation

cd page
sudo cp page /usr/local/bin

Usage

Show help message:

page

First, generate a master encryption key:

page -g

Save a password:

page -a foo@example.com

Or save a password with category:

page -a email/foo@example.com

Show a password:

page -s foo@example.com

Or show a password with category:

page -s email/foo@example.com

List all passwords:

page -l

Copy a password to the clipboard:

page -c foo@example.com

Or copy a password with category to the clipboard:

page -c email/foo@example.com

Delete a password:

page -d foo@example.com

Or delete a password with category:

page -d email/foo@example.com

References

License

page -- A simple password manager using age written in POSIX sh.

Copyright (C) 2020-2024  Ricardo García Jiménez <ricardogj08@riseup.net>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

========================================================================

The MIT License (MIT)

Copyright (c) 2016-2019 Dylan Araps

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS 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.