---
title: into glob
categories: |
conversions
version: 0.104.0
conversions: |
Convert value to glob.
usage: |
Convert value to glob.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `into glob` for [conversions](/commands/categories/conversions.md)
<div class='command-title'>Convert value to glob.</div>
## Signature
```> into glob {flags} ...rest```
## Parameters
- `...rest`: For a data structure input, convert data at the given cell paths.
## Input/output types:
| input | output |
| ------------ | ---------- |
| glob | glob |
| list\<string\> | list\<glob\> |
| record | record |
| string | glob |
| table | table |
## Examples
convert string to glob
```nu
> '1234' | into glob
1234
```
convert glob to glob
```nu
> '1234' | into glob | into glob
1234
```
convert filepath to glob
```nu
> ls Cargo.toml | get name | into glob
```