forked from extern/nushell
43 lines
589 B
Markdown
43 lines
589 B
Markdown
---
|
|
title: into filesize
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
Convert value to filesize
|
|
|
|
## Signature
|
|
|
|
```> into filesize ...rest```
|
|
|
|
## Parameters
|
|
|
|
- `...rest`: column paths to convert to filesize (for table input)
|
|
|
|
## Examples
|
|
|
|
Convert string to filesize in table
|
|
```shell
|
|
> [[bytes]; ['5'] [3.2] [4] [2kb]] | into filesize bytes
|
|
```
|
|
|
|
Convert string to filesize
|
|
```shell
|
|
> '2' | into filesize
|
|
```
|
|
|
|
Convert decimal to filesize
|
|
```shell
|
|
> 8.3 | into filesize
|
|
```
|
|
|
|
Convert int to filesize
|
|
```shell
|
|
> 5 | into filesize
|
|
```
|
|
|
|
Convert file size to filesize
|
|
```shell
|
|
> 4KB | into filesize
|
|
```
|