|
|
# Commandes de bases
|
|
|
|
|
|
```bash
|
|
|
# List existing passwords in store
|
|
|
pass
|
|
|
pass ls
|
|
|
|
|
|
# Find existing passwords in store that match .com
|
|
|
pass find .com
|
|
|
pass search .com
|
|
|
|
|
|
# Show existing password
|
|
|
pass Email/zx2c4.com
|
|
|
|
|
|
# Copy existing password to clipboard
|
|
|
pass -c Email/zx2c4.com
|
|
|
|
|
|
# Add password to store
|
|
|
pass insert Business/cheese-whiz-factory
|
|
|
|
|
|
# Add multiline password to store
|
|
|
pass insert -m Business/cheese-whiz-factory
|
|
|
|
|
|
# Generate new password
|
|
|
pass generate Email/jasondonenfeld.com 15
|
|
|
pass generate -n Email/jasondonenfeld.com 12
|
|
|
|
|
|
# Generate new password and copy it to the clipboard
|
|
|
pass generate -c Email/jasondonenfeld.com 19
|
|
|
|
|
|
# Remove password from store
|
|
|
pass remove Business/cheese-whiz-factory
|
|
|
pass rm Business/cheese-whiz-factory
|
|
|
``` |
|
|
\ No newline at end of file |