Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 1079708

Browse files
committed
Add dedicated command for removing local keys
1 parent ffaea29 commit 1079708

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Search for SSH key items in your vault and read them all into temporary storage.
2525

2626
### Remove all local SSH credentials
2727

28-
$ rm -r /tmp/op-ssh-utils
28+
$ ./op-remove-identities
2929

3030
# Todos
3131

op-remove-identities

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
dirname="$(dirname "$(realpath $0)")"
4+
source "$dirname/common.sh"
5+
6+
rm -r "$temp_storage_root"

0 commit comments

Comments
 (0)