eqx/eqx-get-project-names

5 lines
135 B
Plaintext
Raw Normal View History

2021-01-23 14:57:09 -07:00
#!/bin/bash
2021-01-23 15:48:30 -07:00
eqx-get-projects | jq --raw-output '.[] | {name}' | grep name | cut -f 2 -d ":" | sed -e 's/ //g' -e 's/"//g' | sort -V
2021-01-23 14:57:09 -07:00