Powered by Blogger.
Showing posts with label code. Show all posts

Wednesday, July 31, 2013

Clear file by time create

No comments :
This is bash shell to clear file create by time with 60 m * 8 hour = 480 m :

 #!/bin/bash  

 homedir=( folderName1  
 folderName2  
 folderName3  
 folderName4  
  )  

 for d in ${homedir[@]}  
 do  
     echo "Homedir: /var/nginx/cached/$d"  
     find "/var/nginx/cached/$d" -type f -amin +480 -exec rm {} \;  
 done  

Tuesday, July 30, 2013

Source Code Formatter for Blogger

No comments :
This is website I made source code show like clear : codeformatter.blogspot.com

This is example :
 <?php  
 $result = shell_exec("comand shell");  
 print "<pre>".$result."</pre>";  
 ?>