23 lines
652 B
Markdown
23 lines
652 B
Markdown
# prisma complete
|
|
|
|
Prints a shell completion script.
|
|
|
|
```bash
|
|
prisma complete zsh
|
|
prisma complete bash
|
|
prisma complete fish
|
|
prisma complete powershell
|
|
```
|
|
|
|
For a direct global CLI installation, load the output using the shell's normal startup mechanism. For example, in zsh:
|
|
|
|
```bash
|
|
source <(prisma complete zsh)
|
|
```
|
|
|
|
Prisma also integrates with supported package-manager completion flows. `npx` and `bunx` do not themselves provide completion; invoke the installed binary or the package manager's supported execution form such as `npm exec` or `bun x`.
|
|
|
|
## Reference
|
|
|
|
- [Prisma ORM 7.9.0 release](https://github.com/prisma/prisma/releases/tag/7.9.0)
|