From 5082a5087a4eafab81a92c574b3f2ac13ad3b455 Mon Sep 17 00:00:00 2001 From: Andrew Janssen Date: Fri, 8 Nov 2024 09:34:20 -0800 Subject: [PATCH] Fix: regex example in README is wrong --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 051a6a8..c9341a2 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Search for processes by name, command, or PID. Search for multiple things at once by separating them with commas. For example, `arm, x86` will return processes having `arm` or `x86` as a substring of the name or command. You can use regular expressions too. For example, `d$` will return a list of daemons (which tend to end in the letter `d`), while - `(\w+)\.\w+` will return a list of processes with reverse domain name notation, such as `com.docker.vmnetd`. + `^(\w+\.)+\w+$` will return a list of processes with reverse domain name notation, such as `com.docker.vmnetd`. - 📌 Pin important processes - 🛠 Process management (kill processes)