1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pixi-task.md

21 lines
381 B
Markdown
Raw Normal View History

# pixi task
> Manage tasks in the project environment.
> More information: <https://pixi.sh/latest/reference/cli/#task>.
- Create a new task:
`pixi task add {{task_name}} {{task_command}}`
- List all tasks in the project:
`pixi task list`
- Remove a task:
`pixi task remove {{task_name}}`
- Create an alias for a task:
`pixi task alias {{alias_name}} {{task1 task2 ...}}`