From 9beafb037f7994b8b738bbda87d7f0fc8f88ccbb Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Sun, 8 Dec 2024 17:58:54 +0100 Subject: [PATCH] chore(gopass): start snippets collection --- snippets/gopass.fish | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 snippets/gopass.fish diff --git a/snippets/gopass.fish b/snippets/gopass.fish new file mode 100644 index 0000000..cf2b04b --- /dev/null +++ b/snippets/gopass.fish @@ -0,0 +1,17 @@ +#!/usr/bin/env fish + +# List templates +gopass templates + +# Create templates +gopass templates edit 'path/to/dir' +gopass templates create 'path/to/dir' +gopass templates new 'path/to/dir' + +# Show templates +gopass templates show 'path/to/dir' +gopass templates cat 'path/to/dir' + +# Remove templates +gopass templates remove 'path/to/dir' +gopass templates rm 'path/to/dir'