mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
21 lines
461 B
Fish
21 lines
461 B
Fish
#!/usr/bin/env fish
|
|
|
|
# Link secrets
|
|
gopass ln 'stackexchange.com/me@example.org' 'stackoverflow.com/me@example.org'
|
|
|
|
# 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'
|