Advertisement
kremisoski

index.php Switcher for Demo and Construction Site Conversion

May 14th, 2015
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.48 KB | None | 0 0
  1. # Project:  index.php Switcher for Demo and Construction Site Conversion
  2. # Version:  1.0
  3. # Date:     March 14, 2015
  4. # Author:   Created by Kevin Remisoski
  5. # Contact:  kevin@remytek.com
  6. # Site:     www.remytek.com
  7.  
  8. if [ -s ./index.php.tmp ]
  9. then
  10.     echo "Construction Site Online / Project Site Offline"
  11.     mv index.php index.php.current
  12.     mv index.php.tmp index.php
  13. else
  14.     echo "Construction Site Offline / Project Site Online"
  15.     mv index.php index.php.tmp
  16.     mv index.php.current index.php
  17. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement