Skip to content

Commit

Permalink
Merge pull request cheat#25 from b3nj5m1n/pass
Browse files Browse the repository at this point in the history
Add command pass
  • Loading branch information
chrisallenlane authored Jul 11, 2020
2 parents 6761204 + c5b01aa commit acf0cb6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Initalize password store using a gpg id:
pass init <gpg-id>

# Reencrypt data in subdirectory:
pass init -p <path-to-directory> <gpg-id-1> <gpg-id-2>

# Insert (Create or overwrite) data into a file:
pass insert [-m|--multiline] <path-to-data>

# Automatically generate a password of length n:
pass generate <path-to-data> <n>

# Show password store:
pass

# Edit an entry:
pass edit <path-to-data>

# Display content of an entry:
pass <path-to-data>

# Copy line n of entry to clipboard (Line 0 if none if specified):
pass -c <n> <path-to-data>

# Initalize a git repository (All changes made by pass will be committed automatically)
pass git init

0 comments on commit acf0cb6

Please sign in to comment.