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