---
title: from plist
categories: |
formats
version: 0.104.0
formats: |
Convert plist to Nushell values
usage: |
Convert plist to Nushell values
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `from plist` for [formats](/commands/categories/formats.md)
<div class='command-title'>Convert plist to Nushell values</div>
::: warning This command requires a plugin
The `from plist` command resides in the `formats` plugin.
To use this command, you must install and register `nu_plugin_formats`.
See the [Plugins](/book/plugins.html) chapter in the book for more information.
:::
## Signature
```> from plist {flags} ```
## Input/output types:
| input | output |
| ----- | ------ |
| any | any |
## Examples
Convert a table into a plist file
```nu
> '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a</key>
<integer>3</integer>
</dict>
</plist>' | from plist
╭───┬───╮
│ a │ 3 │
╰───┴───╯
```