Skip to content

Commit

Permalink
Merge pull request #49 from kskarthik/main
Browse files Browse the repository at this point in the history
rename go-passbolt-cli -> passbolt in README
  • Loading branch information
speatzle committed Apr 8, 2024
2 parents b11702d + a74c5e0 commit c454e73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Notes:

Generally the Structure of Commands is like this:
```bash
go-passbolt-cli action entity [arguments]
passbolt action entity [arguments]
```

Action is the Action you want to perform like Creating, Updating or Deleting an Entity.
Expand All @@ -56,12 +56,12 @@ In Passbolt a Password is usually revert to as a Resource.

To Create a Resource you can do this, it will return the ID of the newly created Resource:
```bash
go-passbolt-cli create resource --name "Test Resource" --password "Strong Password"
passbolt create resource --name "Test Resource" --password "Strong Password"
```

You can then list all users:
```bash
go-passbolt-cli list user
passbolt list user
```
Note: you can adjust which columns should be listed using the flag `--column` or its short from `-c`, if you want multiple column then you need to specify this flag multiple times.

Expand All @@ -77,7 +77,7 @@ For sharing we will need to know how we want to share, for that there are these

Now that we have a Resource ID, know the ID's of other Users and about know about Permission Types, we can share the Resource with them:
```bash
go-passbolt-cli share resource --id id_of_resource_to_share --type type_of_permission --user id_of_user_to_share_with
passbolt share resource --id id_of_resource_to_share --type type_of_permission --user id_of_user_to_share_with
```
Note: you can supply the the users argument multiple times to share with multiple users

Expand Down

0 comments on commit c454e73

Please sign in to comment.