From 7dd35e3572b8f6867dd9de27f179d4f3cf80e691 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sat, 8 Oct 2022 19:38:45 -0700 Subject: [PATCH] Replace egrep with grep -E --- setup/linux/profile_gui/airootfs/etc/skel/.update_conky | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/linux/profile_gui/airootfs/etc/skel/.update_conky b/setup/linux/profile_gui/airootfs/etc/skel/.update_conky index 0e1445df..f6d0ec3c 100755 --- a/setup/linux/profile_gui/airootfs/etc/skel/.update_conky +++ b/setup/linux/profile_gui/airootfs/etc/skel/.update_conky @@ -6,7 +6,7 @@ CONFIG_NEW="${HOME}/.config/conky/new.conf" CONFIG_REAL="${HOME}/.config/conky/conky.conf" IF_LIST=($(ip l \ - | egrep '^[0-9]+:\s+(eth|en|wl)' \ + | grep -E '^[0-9]+:\s+(eth|en|wl)' \ | sed -r 's/^[0-9]+:\s+(\w+):.*/\1/' \ | sort))