mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
930bbaf035
This addresses a long-standing gripe of mine: to get your logged in
username you would have to do
```bash
coder whoami | awk '{print $9}'
```
This allows you to do:
```
coder whoami -o json | jq -r '.username'
```
or
```
coder whoami -f table -c username
```