Home Explore Blog CI



nushell

commands/docs/date_list-timezone.md
ced3d6fa4a14e4d1a5dbe6ed1b726c8d04de1182f56edd1900000003000003a4
---
title: date list-timezone
categories: |
  date
version: 0.104.0
date: |
  List supported time zones.
usage: |
  List supported time zones.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `date list-timezone` for [date](/commands/categories/date.md)

<div class='command-title'>List supported time zones.</div>

## Signature

```> date list-timezone {flags} ```


## Input/output types:

| input   | output |
| ------- | ------ |
| nothing | table  |
## Examples

Show time zone(s) that contains 'Shanghai'
```nu
> date list-timezone | where timezone =~ Shanghai
╭───┬───────────────╮
│ # │   timezone    │
├───┼───────────────┤
│ 0 │ Asia/Shanghai │
╰───┴───────────────╯

```

Chunks
6d9d7553 (1st chunk of `commands/docs/date_list-timezone.md`)
Title: date list-timezone: List Supported Time Zones
Summary
The `date list-timezone` command is used to display a list of supported time zones. It takes no input and outputs a table containing the time zones. The provided example shows how to filter the output to find time zones containing 'Shanghai'.