cd 你的目錄 find . -type d -name '.svn' <--先確認檔案 find . -type d -name '.svn' | while read f;do rm -rf "$f"; done <-- 全部強制刪除
這樣就ok了,若要刪除檔案,type後的d就改成f
參考網址:
Linux: remove file extensions for multiple files
cd 你的目錄 find . -type d -name '.svn' <--先確認檔案 find . -type d -name '.svn' | while read f;do rm -rf "$f"; done <-- 全部強制刪除
grep 'test' xxx.log //找單一檔案中的test那幾行 grep -v 'test' xxx.log //找單一檔案中的沒有test的那幾行 grep --color=auto 'test' xxx.log //找單一檔案,且字用顏色標起來 grep -n --color=auto 'test' xxx.log //找單一檔案,標出行號 grep -n -A3 -B2 --color=auto 'test' xxx.log //找單一檔案,有這個字的前2行後3行 grep -n -A3 -B2 --color=auto 'test' xxx.log.2014-07* //找多個檔案 grep -n -A3 -B2 --color=auto 't[a-z]st' xxx.log.2014-07* //找多個檔案中,t(任意小寫)st的字,使用正規表示式
yum install httpd
service httpd start
<Directory "/var/www/html">
下的OptionsOptions Indexes FollowSymLinks
Options -Indexes FollowSymLinks
yum install mysql-server
service mysqld start
/usr/bin/mysql_secure_installation
yum install php php-mysql php-mysqli php-mbstring
chkconfig httpd on
chkconfig mysqld on
LoadModule rewrite_module modules/mod_rewrite.so
<-- 這個要有AddType application/x-httpd-php .php .phtml
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
vim /etc/sysconfig/iptables
/sbin/service iptables restart