3 Comments

instead of parsing the env output. how about having the shell do it for you.

echo $OPENAI_API | pbcopy

Expand full comment

but then I wouldn't have a fun teachable moment ;)

Expand full comment

Nice! I always use:

```

tr '=' '\t' | awk '{print $2}'

```

I'll try to use `cut` more 😀

Expand full comment