KarthikBabu
Programmer
Is there anyway by which i can prevent the value of an environmental variable from being displayed while using the echo statement.
I have an environmental variable SQLPASSWORD that i am setting up in my .profile. I do not want the value of this variable to be displayed while using the echo statement. The command
echo $SQLPASSWORD
should return nothing. But i should be able to login in to the database using $SQLPASSWORD. In other words, i should be able to use the environment variable but not display its value thru echo statement. Is this possible? Thanks.
I have an environmental variable SQLPASSWORD that i am setting up in my .profile. I do not want the value of this variable to be displayed while using the echo statement. The command
echo $SQLPASSWORD
should return nothing. But i should be able to login in to the database using $SQLPASSWORD. In other words, i should be able to use the environment variable but not display its value thru echo statement. Is this possible? Thanks.