> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kosli.com/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.kosli.com/feedback

```json
{
  "path": "/troubleshooting/zsh_no_such_user",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# zsh: no such user or named directory

> How to fix the zsh error when using arguments starting with ~ in Kosli CLI commands.

## Error

```shell theme={"theme":"dracula","languages":{"custom":["/languages/rego.json"]}}
kosli list snapshots prod ~3..NOW
```

```plaintext theme={"theme":"dracula","languages":{"custom":["/languages/rego.json"]}}
zsh: no such user or named directory: 3..NOW
```

## Solution

Wrap the argument in quotation marks (single or double):

```shell theme={"theme":"dracula","languages":{"custom":["/languages/rego.json"]}}
kosli list snapshots prod '~3..NOW'
```

or

```shell theme={"theme":"dracula","languages":{"custom":["/languages/rego.json"]}}
kosli list snapshots prod "~3..NOW"
```
