
# Command Line Feeder
```{admonition} Module type

<span style='color: #FFA500'>[feeder](/core_modules.md#feeder-modules)</a></span>
```

The Command Line Feeder is the default enabled feeder for the Auto Archiver. It allows you to pass URLs directly to the orchestrator from the command line 
without the need to specify any additional configuration or command line arguments:

`auto-archiver --feeder cli_feeder -- "https://example.com/1/,https://example.com/2/"`

You can pass multiple URLs by separating them with a space. The URLs will be processed in the order they are provided.

`auto-archiver --feeder cli_feeder -- https://example.com/1/ https://example.com/2/`


## Configuration Options

### YAML
```{code} yaml

# steps configuration
steps:
...
  feeders:
  - cli_feeder
...

# module configuration
...

cli_feeder:
  urls:



```

### Command Line:
| Option | Description | Default | Type|
| --- | --- | --- | --- |
| `cli_feeder.urls` | Optional. URL(s) to archive, either a single URL or a list of urls, should not come from config.yaml | None | string |

[API Reference](../../../autoapi/cli_feeder/index)
