---
title: TAR
url: https://www.tines.com/docs/formulas/functions/tar/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md) › [Functions](https://www.tines.com/llm/docs/formulas/functions.md)*

# TAR

*[View on tines.com](https://www.tines.com/docs/formulas/functions/tar/)*

Creates a tarball for a list of files

**Categories:** Data Parsing/Conversion

## Syntax

```
TAR(compressed_file_data)
```

## Examples

### Example 1

Input:

```json
{
  "zip_files": [
    {
      "name": "example.txt",
      "contents": "hello, world!"
    },
    {
      "name": "other.csv",
      "contents": "1,2,3"
    }
  ]
}
```

Formula:

```
TAR(files)
```
