1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

powershell examples

This commit is contained in:
Kyle Spearrin
2018-05-16 23:27:47 -04:00
parent 9dd7af67b3
commit 576c529b10
2 changed files with 4 additions and 2 deletions

View File

@@ -34,7 +34,8 @@ export class UnlockCommand {
await this.cryptoService.setKey(key);
const res = new MessageResponse('Your vault is now unlocked!', '\n' +
'To unlock your vault, set your session key to the `BW_SESSION` environment variable. ex:\n' +
'$ export BW_SESSION="' + process.env.BW_SESSION + '"\n\n' +
'$ export BW_SESSION="' + process.env.BW_SESSION + '"\n' +
'> $env:BW_SESSION="' + process.env.BW_SESSION + '"\n\n' +
'You can also pass the session key to any command with the `--session` option. ex:\n' +
'$ bw get items --session ' + process.env.BW_SESSION);
res.raw = process.env.BW_SESSION;