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

# Aufgaben und Aufgabengruppen verwalten

> Listen, prüfen, kopieren, benennen, verschieben, löschen und validieren Sie Octoparse-Aufgaben und verwalten Sie Aufgabengruppen per Befehlszeile.

Verwenden Sie Aufgabenbefehle, um Remote-Aufgaben zu finden und zu verwalten. Organisieren Sie zusammengehörige Workflows mit Aufgabengruppen.

## Aufgaben finden

```bash theme={null}
octoparse task list
octoparse task list --page 2 --page-size 20
octoparse task list --keyword news --limit 10
octoparse task list --task-group <groupId>
octoparse task list --template-id <templateId>
octoparse task show <taskId> --json
```

## Aufgabe kopieren oder neu organisieren

```bash theme={null}
octoparse task copy <taskId> --task-group <groupId> --json
octoparse task rename <taskId> --name "New name" --yes
octoparse task move <taskId> --task-group <groupId> --yes
octoparse task delete <taskId> --yes
```

<Warning>
  `rename`, `move` und `delete` ändern den Remote-Aufgabenstatus und erfordern `--yes`. Prüfen Sie Aufgaben- und Gruppen-IDs, bevor Sie die Befehle automatisiert ausführen.
</Warning>

## Aufgabendefinition prüfen oder validieren

```bash theme={null}
octoparse task inspect <taskId>
octoparse task validate <taskId>
octoparse task inspect <taskId> --task-file task.json
octoparse task validate <taskId> --task-file task.otd --json
```

Bei Verwendung von `--task-file` dient `<taskId>` als Ersatz-ID, falls die Datei keine enthält.

## Aufgabengruppen verwalten

```bash theme={null}
octoparse task-group list --json
octoparse task-group create "Monitoring" --json
octoparse task-group update <groupId> --name "Price monitoring" --yes
octoparse task-group set-default <groupId> --yes
octoparse task-group delete <groupId> --yes
```

Gruppenaktualisierungen, Löschungen und Änderungen der Standardgruppe ändern den Remote-Status und erfordern `--yes`.

## Wie geht es weiter?

<CardGroup cols={2}>
  <Card title="Aufgaben lokal ausführen" href="/docs/de/cli/guides/local-runs">
    Starten Sie eine lokale Extraktion im Vordergrund oder als entkoppelten Lauf.
  </Card>

  <Card title="Aufgaben in der Cloud ausführen" href="/docs/de/cli/guides/cloud-runs-and-schedules">
    Starten Sie die Cloud-Extraktion und konfigurieren Sie wiederkehrende Zeitpläne.
  </Card>
</CardGroup>
