From 9e23be68ba7960870f494a0cf350bc3b4f82e0e4 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Fri, 17 May 2019 20:18:17 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fca2a8a4c..d11c4fbff 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Priority #3: It's an object shell like PowerShell. # A Taste of Nu ```text -~\Code\nushell> ps | where cpu -gt 0 +~\Code\nushell> ps | where cpu > 0 +-------------------+-----+-------+-------+----------+ | name | cmd | cpu | pid | status | +-------------------+-----+-------+-------+----------+ @@ -53,7 +53,7 @@ Priority #3: It's an object shell like PowerShell. | BlueJeans.exe | - | 7.83 | 6968 | Runnable | +-------------------+-----+-------+-------+----------+ -~\Code\nushell> ps | where name -eq chrome.exe | take 10 +~\Code\nushell> ps | where name == chrome.exe | take 10 +------------+-----+------+-------+----------+ | name | cmd | cpu | pid | status |