Forrest logo
back to context overview

pass

List of commands for pass:

  • pass:tldr:0353e pass: Initialize (or re-encrypt) the storage using one or more GPG IDs.
    $ pass init ${gpg_id_1} ${gpg_id_2}
    try on your machine
    explain this command
  • pass:tldr:1a1dc pass: List the whole store tree.
    $ pass
    try on your machine
    explain this command
  • pass:tldr:26a10 pass: Generate a new random password with a given length, and copy it to the clipboard.
    $ pass generate -c ${path-to-data} ${num}
    try on your machine
    explain this command
  • pass:tldr:3273a pass: Save a new password and additional information (press Ctrl + D on a new line to complete).
    $ pass insert --multiline ${path-to-data}
    try on your machine
    explain this command
  • pass:tldr:343da pass: Edit an entry.
    $ pass edit ${path-to-data}
    try on your machine
    explain this command
  • pass:tldr:9f96d pass: Initialize a new Git repository (any changes done by pass will be committed automatically).
    $ pass git init
    try on your machine
    explain this command
  • pass:tldr:b1ed7 pass: Copy a password (first line of the data file) to the clipboard.
    $ pass -c ${path-to-data}
    try on your machine
    explain this command
  • pass:tldr:d3aaa pass: Run a Git command on behalf of the password storage.
    $ pass git ${command}
    try on your machine
    explain this command
back to context overview