> ## Documentation Index
> Fetch the complete documentation index at: https://kosli-add-typescript-sdk.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 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={null}
kosli list snapshots prod ~3..NOW
```

```plaintext theme={null}
zsh: no such user or named directory: 3..NOW
```

## Solution

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

```shell theme={null}
kosli list snapshots prod '~3..NOW'
```

or

```shell theme={null}
kosli list snapshots prod "~3..NOW"
```
