> ## 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.

# 작업 및 작업 그룹 관리

> 명령줄에서 Octoparse 작업을 조회, 확인, 복사, 이름 변경, 이동, 삭제 및 검증하고 작업 그룹을 관리하세요.

작업 명령으로 원격 작업을 찾고 관리하세요. 작업 그룹을 사용하면 관련 워크플로를 체계적으로 정리할 수 있습니다.

## 작업 찾기

```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
```

## 작업 복사 또는 재구성

```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`, `delete`는 원격 작업 상태를 변경하며 `--yes`가 필요합니다. 자동화에서 실행하기 전에 작업 및 그룹 ID를 확인하세요.</Warning>

## 작업 정의 확인 또는 검증

```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
```

`--task-file`을 사용하면 파일에 ID가 없을 때 `<taskId>`가 대체 ID로 사용됩니다.

## 작업 그룹 관리

```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
```

그룹 업데이트, 삭제 및 기본 그룹 변경은 원격 상태를 변경하며 `--yes`가 필요합니다.

## 다음 단계

<CardGroup cols={2}>
  <Card title="로컬에서 작업 실행" href="/docs/ko/cli/guides/local-runs">포그라운드 또는 분리된 로컬 추출을 시작합니다.</Card>
  <Card title="클라우드에서 작업 실행" href="/docs/ko/cli/guides/cloud-runs-and-schedules">클라우드 추출을 시작하고 반복 예약 실행을 구성합니다.</Card>
</CardGroup>
