Skip to content

Instantly share code, notes, and snippets.

@MuhammadQuran17
Created May 19, 2025 13:53
Show Gist options
  • Save MuhammadQuran17/6a4201868a3db2e3bb0a1aa8eca34b3b to your computer and use it in GitHub Desktop.
Save MuhammadQuran17/6a4201868a3db2e3bb0a1aa8eca34b3b to your computer and use it in GitHub Desktop.
AWS cheatsheet

Регулярка чувствительна к регистру. Если нужно искать exception, EXCEPTION, sql, и т.д., используй флаг (?i):

fields f1, f2, f3
| filter f1 like /(?i)Exception|SQL|Error/

for and use this

| filter f1 like /Exception/ and f1 like /SQL/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment