一般的なテクノロジースタックの概要

1435 ワード

ll ./jiehun/    
cd sites/jiehun  cd          
ln -s ~/jiehun/              jiehun
unlink jiehun             
ln -s ~/jiehen/ jh         jh
unlink jh
cd page
ll
reset_link    

サイトのテスト

 97 # php 
 98 server {
 99     listen      18600;
100     server_name wanggaopeng.hapn.cc;
101     root        /home/wanggaopeng/sites/default;
102     index       index.html index.php;
103 
104     location / {
105 
106     }
107 
108     location ~ \.php$ {
109         fastcgi_pass   127.0.0.1:9200;
110         fastcgi_param  SCRIPT_FILENAME     $document_root$fastcgi_script_name;
111         fastcgi_param  SERVER_NAME      $host;
112         include        fastcgi_params;
113     }
114 }
cd ~/sites/jiehun 
ls
cd log
tail -f HapN.log.wf
cd sites/jiehun
ls
rm  app
ln -s ../../service/app/
ll

1.grepコマンド

grep "classifybox" ./ --include=*.phtml -r|grep -v "id="


2.findコマンドfind./

find ./ -name ActionController.php|grep mystore


3.awkコマンド

awk '{print $1}' access.log


awk '{if ($1 >1) print $0}' access.log中間{}は循環体です


4.sedコマンド
grep'結婚写真を撮る'./-r --include=.phtml grep'結婚写真を撮る'./-rl --include=.phtmlgrep'結婚写真を撮る'./-rl --include=*.phtml|xargs sed's/ウエディングドレス/結婚写真/g'man awk awk--help