7 lines
153 B
Bash
Executable file
7 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -e /www/index.html ]
|
|
then echo
|
|
echo "Renaming /www/index.html to /www/index.html.orig"
|
|
mv /www/index.html /www/index.html.orig
|
|
fi
|