You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
👋 Errors, improvements or other cool stuff? Let me know! 😀
Extract only the part that matches
grep -oP "@version \K.+$" file # Keep only the part after the \K.
grep -oP "(?<=PATTERN_BEFORE).+(?=PATTERN_AFTER)" file # Extract the part in between.