From b3ba6414ff45a82349d745ebe8d6dcffa13b4882 Mon Sep 17 00:00:00 2001 From: Yacine31 Date: Tue, 18 Jun 2024 01:17:31 +0200 Subject: [PATCH] Update 09_os_info.sh --- sh/09_os_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/09_os_info.sh b/sh/09_os_info.sh index 4d5699f..fa54c76 100644 --- a/sh/09_os_info.sh +++ b/sh/09_os_info.sh @@ -12,7 +12,7 @@ ps -ef | grep tnslsnr| grep -v grep echo "" echo "

Statut des listeners :

" -ps -ef | grep tnslsnr | grep -v grep | while read l +ps -ef | grep tnslsnr | egrep -i "LISTENER|${ORACLE_SID}" | grep -v grep | while read l do # Récupérer le chemin ORACLE_HOME à partir de la sortie de ps -ef # ---- La commande grep -o ne fonctionne pas sur AIX, on la remplace par perl -lne