diff --git a/docs/manual.md b/docs/manual.md index 37b2d6c..d11b55d 100644 --- a/docs/manual.md +++ b/docs/manual.md @@ -135,34 +135,36 @@ enbas whoami ## Accounts -### View your own account +### View account information -Prints the information from your own account. - -``` -enbas show --type account --my-account -``` +- View information from your own account + ``` + enbas show --type account --my-account + ``` +- View information from a local or remote account. + ``` + enbas show --type account --account-name @name@example.social + ``` | flag | type | required | description | default | |------|------|----------|-------------|---------| | `type` | string | true | The resource you want to view. Here this should be `account`. | | | `my-account` | boolean | true | Use this flag to view your own account. | | | `show-preferences` | boolean | false | Show your posting preferences. | false | +| `account-name` | string | true | The name of the account to view. | | +| `skip-relationship` | boolean | false | Set to `true` to skip viewing your relationship to the account you are viewing (including the private note if you've created one). | false | -### View an account - -Prints the information of a local or a remote account. -If the account is unknown by your instance a `404` message will be shown instead. - -``` -enbas show --type account --account-name @name@example.social -``` +Additional flags for viewing an account's statuses. | flag | type | required | description | default | |------|------|----------|-------------|---------| -| `type` | string | true | The resource you want to view. Here this should be `account`. | | -| `account-name` | string | true | The name of the account to view. | | -| `skip-relationship` | boolean | false | Set to `true` to skip viewing your relationship to the account you are viewing (including the private note if you've created one). | false | +| `show-statuses` | bool | Set to `true` to view the statuses created from this account. | false | +| `limit` | integer | The maximum amount of statuses to show from this account. | 20 | +| `exclude-replies` | bool | Set to `true` to exclude replies. | false | +| `exclude-boosts` | bool | Set to `true` to exclude boosts. | false | +| `only-pinned` | bool | Set to `true` to view only pinned statuses. | false | +| `only-media` | bool | Set to `true` to view only statuses with media attachments. | false | +| `only-public` | bool | Set to `true` to view only public statuses. | false | ### Follow an account