Home Explore Blog CI



nushell

commands/docs/from_ics.md
5b4aafb39068437dc5f66217f8030efc1e73b383d31811b0000000030000097d
---
title: from ics
categories: |
  formats
version: 0.104.0
formats: |
  Parse text as .ics and create table.
usage: |
  Parse text as .ics and create table.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `from ics` for [formats](/commands/categories/formats.md)

<div class='command-title'>Parse text as .ics and create table.</div>

::: warning This command requires a plugin
The `from ics` 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 ics {flags} ```


## Input/output types:

| input  | output |
| ------ | ------ |
| string | table  |
## Examples

Converts ics formatted string to table
```nu
> 'BEGIN:VCALENDAR
END:VCALENDAR' | from ics
╭───┬────────────────┬────────────────┬────────────────┬────────────────┬────────────────┬────────────────┬───────────╮
│ # │   properties   │     events     │     alarms     │     to-Dos     │    journals    │   free-busys   │ timezones │
├───┼────────────────┼────────────────┼────────────────┼────────────────┼────────────────┼────────────────┼───────────┤
│ 0 │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0   │
│   │                │                │                │                │                │                │ items]    │
╰───┴────────────────┴────────────────┴────────────────┴────────────────┴────────────────┴────────────────┴───────────╯

```

Chunks
1cd6d6ff (1st chunk of `commands/docs/from_ics.md`)
Title: from ics
Summary
The `from ics` command parses text as .ics format and converts it into a table. It resides in the `formats` plugin, requiring `nu_plugin_formats` to be installed and registered. It takes a string as input and outputs a table.