...
ALTER TABLE account_regions RENAME s3_account_region...
[root@achappan htdocs_8085]# find . -type f | wc -l14626[root@achappan htdocs_8085]# Explanation: find . -type f finds all files ( -type f ) in this ( . ) directory and in all sub directories, the filenames are then printed to standard out one per line. This is then piped | into wc (word count) the -l option tells wc to only count lines of its input. Together they count all your files...
 You can create a tar archive on two ways like below. To create an archive of a directory and its contents: tar -cvf name.tar /path/to/directory To create an archive of certfain files: tar -cvf name.tar /path/to/file1 /path/to/file2 /path/to/file3 ...
[root@achappan mysql]# df -hk /var Filesystem                                          1K-blocks         Used                    Available            Use% ...
1. List down all the installed Mysql RPM's [root@achappan mysql]# rpm -qa | grep MySQL MySQL-server-5.5.*-1.rhel5 MySQL-client-5.5.*-1.rhel5 perl-DBD-MySQL-3.0007-2.el5 [root@achappan mysql]# 2. Remove MySQL-server and MySQL-client from the list [root@achappan mysql]# rpm -e MySQL-server-5.5.*-1.rhel5 [root@achappan mysql]# rpm -e MySQL-client-5.5.*-1.rhel5 3.  Verify the uninstalled rpms are removed from the list or not. [root@achappan...
<?php if(preg_match('/(?i)msie [1-8]/',$_SERVER['HTTP_USER_AGENT'])) {    echo "Browser Not supported";     exit; } ?&g...

Blog Archive

Total Pageviews

Popular Posts