---
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 │
╰───┴───────────────╯
```