2020-05-14 02:36:08 +02:00
|
|
|
# rename
|
|
|
|
|
|
|
|
Use `rename` to give columns more appropriate names.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```shell
|
2020-05-24 08:41:30 +02:00
|
|
|
> open /etc/passwd | lines | split column ":" | rename user password uid gid gecos home shell
|
2020-05-14 02:36:08 +02:00
|
|
|
────┬────────┬──────────┬──────┬──────┬────────┬─────────────────┬──────────────────
|
|
|
|
# │ user │ password │ uid │ gid │ gecos │ home │ shell
|
|
|
|
────┼────────┼──────────┼──────┼──────┼────────┼─────────────────┼──────────────────
|
|
|
|
0 │ root │ x │ 0 │ 0 │ root │ /root │ /bin/bash
|
|
|
|
1 │ bin │ x │ 1 │ 1 │ bin │ /bin │ /usr/bin/nologin
|
|
|
|
2 │ daemon │ x │ 2 │ 2 │ daemon │ / │ /usr/bin/nologin
|
|
|
|
3 │ mail │ x │ 8 │ 12 │ mail │ /var/spool/mail │ /usr/bin/nologin
|
|
|
|
────┴────────┴──────────┴──────┴──────┴────────┴─────────────────┴──────────────────
|
|
|
|
```
|