# Parse command-line arguments (/docs/guides/process/argv)

<!-- agent-signals: reading_time_min: 1 · est_tokens: 269 · updated: 2026-07-28 -->
Related: [Listen for CTRL+C](/docs/guides/process/ctrl-c.md), [Spawn a child process and communicate using IPC](/docs/guides/process/ipc.md), [Get the process uptime in nanoseconds](/docs/guides/process/nanoseconds.md), [Listen to OS signals](/docs/guides/process/os-signals.md), [Read stderr from a child process](/docs/guides/process/spawn-stderr.md), [Read stdout from a child process](/docs/guides/process/spawn-stdout.md)

The *argument vector* is the list of arguments passed to the program when it is run. It is available as `Bun.argv`.

```ts cli.ts icon="/icons/typescript.svg"
console.log(Bun.argv);
```

***

Running this file with arguments results in the following:

```sh terminal icon="terminal"
bun run cli.ts --flag1 --flag2 value
```

```txt
[ "/path/to/bun", "/path/to/cli.ts", "--flag1", "--flag2", "value" ]
```

***

To parse `argv` into a more useful format, use `util.parseArgs`.

```ts cli.ts icon="/icons/typescript.svg"
import { parseArgs } from "util";

const { values, positionals } = parseArgs({
  args: Bun.argv,
  options: {
    flag1: {
      type: "boolean",
    },
    flag2: {
      type: "string",
    },
  },
  strict: true,
  allowPositionals: true,
});

console.log(values);
console.log(positionals);
```

***

Running `cli.ts` with the same arguments prints the parsed values.

```sh terminal icon="terminal"
bun run cli.ts --flag1 --flag2 value
```

```txt
[Object: null prototype] {
  flag1: true,
  flag2: "value",
}
[ "/path/to/bun", "/path/to/cli.ts" ]
```
