Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zingi/1507f123b52fe610bee90a9a31939f35 to your computer and use it in GitHub Desktop.
Save zingi/1507f123b52fe610bee90a9a31939f35 to your computer and use it in GitHub Desktop.
Filter all environment variable names, used in rust code with env::var("MY_NAME")

Get Enivronment Variables Used in Rust Code

rg -o 'env::var\(".*"\)' project_root/src | rg -o '".*"' | sort | sd '"' ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment