7 lines
94 B
Bash
7 lines
94 B
Bash
#!/bin/ash
|
|
|
|
mv /www/index.html /www/index.html.old
|
|
mv /www/login.html /www/index.html
|
|
exit 0
|
|
|