David Cupp
09/22/2022, 3:45 PM2.4.0
) output text without the fancy borders and column headers?
I would like to pass the output through awk, e.g. prefect deployment ls | awk '(extract deployment id)' | xargs -n 1 (some command)
Zanie
09/22/2022, 3:49 PMTERM=dumb
to do this per https://rich.readthedocs.io/en/stable/console.html#environment-variables but it doesn’t seem to workDavid Cupp
09/22/2022, 3:51 PMZanie
09/22/2022, 3:56 PMDavid Cupp
09/22/2022, 3:57 PMJustin Trautmann
09/23/2022, 7:27 AMcurl -s -X POST "$PREFECT_API_URL/deployments/filter" -H "Authorization: Bearer $PREFECT_API_KEY" | jq -r '.[] | .id' | xargs -n 1 echo