user and bash.profile

Preventing Installation Errors Caused by Terminal Output Commands
This commit is contained in:
Yacine31
2023-04-18 20:11:19 +02:00
parent c1eade8be1
commit fcb0fb75ad
2 changed files with 6 additions and 2 deletions

View File

@@ -62,3 +62,7 @@ if [ $USER = "grid" ] || [ $USER = "oracle" ] || [ $USER = "root" ] ; then
fi
fi
# Preventing Installation Errors Caused by Terminal Output Commands
if [ -t 0 ]; then
stty intr ^C
fi