Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ayax79/nu_plugin_plist

Plugin for handling plist files in nushell
https://github.com/ayax79/nu_plugin_plist

Last synced: 4 months ago
JSON representation

Plugin for handling plist files in nushell

Lists

README

        

# Plist plugin for Nushell
Provides the ability to read and write Apple plists.

To read a plist:
```nushell
open /System/Library/LaunchDaemons/bootps.plist
```

or

```
cat /System/Library/LaunchDaemons/bootps.plist | from plist
```

to write a plist:

```
ps | to plist
```

Note: this requires Nushell 0.89 or later

To install:

```
> cargo install --path .
```

To register (from inside Nushell):
```
> register
```

Usage:
```
open file.plist
```

```
open --raw file.plist | from plist
```