> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arc.cdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# arc:unset

> Use arc:unset to delete one or more attributes from an item, or to delete the item itself.

export const siteNameShort = "Arc";

Use the `arc:unset` keyword to delete attributes from an item, or to delete the item itself.

## Parameters

* **item**: The item from which the attribute is to be removed. If you do not specify an item, the default item is used. This parameter can also be used to remove an item.
* **attr**: The attributes to delete from the item. You can use a glob mask to delete more than one attribute (for example, `*.foo`).

## Control Attributes

None

## Example

Remove an attribute from an item before it is pushed out:

```xml theme={null}
<arc:call op="fileListDir">
  <arc:unset attr="file:size"/>
  <arc:push/>
</arc:call>
```

## See Also

* [arc:set](./op-arc-set): Set attributes in an item.
