On 2020-08-01 16:15, ToddAndMargo via users wrote:
On 2020-08-01 15:20, Joe Zeff wrote:
On 08/01/2020 03:06 PM, ToddAndMargo via users wrote:

Any way around grep and awk or Raku?

      $ nmcli device status | grep eno2 | awk '{print $3}'
     connected

nmcli device status | grep eno2 | grep connected

This will either return connected, or a blank line, without using awk or any other string manipulation.

if [ "$(nmcli device status | grep $eth1 | awk '{print $3}')" != "connected" ]; then


if [ "$(nmcli device status | grep $eth1 | grep -v dis | awk '{print $3}')" != "connected" ]; then

added `grep -v dis`
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org

Reply via email to