We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
grep
# get each top-level key, by itself, no dupes grep -rP -ho "environment(\.get\(|\[)(['\"])\K.*?(?=\2)" siteapp/ | sort | uniq
# show key in original context grep -rnP -o "environment(\.get\(|\[)(['\"])\K.*?(?=\2)" siteapp/
see: https://twitter.com/mathowie/status/837735473745289218