Search Results

Search: Posts Made By: atanubanerji
Forum: Programming 11-17-2017
9,947
Posted By apmcd47
Try this: server_description = "This is xyz abc...
Try this:
server_description = "This is xyz abc of mno CentOS"
my_Check = "CentOS" in server_description
if my_Check == True:
print("This is CentOS")
else:
print("This is NOT CentOS")...
Forum: Red Hat 04-27-2015
1,575
Posted By RudiC
It may well be correct on other servers, but did...
It may well be correct on other servers, but did you check it on that particular server?
Forum: Red Hat 10-25-2014
8,706
Posted By fpmurphy
If SELinux is enabled, try the following with the...
If SELinux is enabled, try the following with the filesystem mounted:

# chcon -R -h -t httpd_sys_content_t /var/www/html
2,129
Posted By rbatte1
Be aware that many crond servers will only read...
Be aware that many crond servers will only read the files at start of on a signal sent by editing a file with crontab -e. You may need to resort to:-crontab -l > /tmp/my_cron
echo "0 * * * *...
Forum: Red Hat 05-03-2013
4,415
Posted By maverick_here
Please try
Please try
24,794
Posted By Yoda
Using single quotes (' ... ') causes the variable...
Using single quotes (' ... ') causes the variable name to be used literally, and no substitution will take place. This is full quoting, sometimes referred to as 'strong quoting.'

Enclosing a...
2,356
Posted By bartus11
You have to escape the double quotes that you...
You have to escape the double quotes that you want to preserve in echo output, like this:echo "user_pref(\"network.proxy.http\", \"$j\");"
Showing results 1 to 7 of 7

 
All times are GMT -4. The time now is 11:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy