mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-02-23 15:35:42 -05:00
13 lines
248 B
PHP
Executable File
13 lines
248 B
PHP
Executable File
<?php
|
|
$wd = getcwd();
|
|
$image = "$wd/vivaldi.jpg";
|
|
|
|
ignore_user_abort(true);
|
|
system("touch vivaldi.jpg");
|
|
system("mv style1.css style.tmp; mv style2.css style1.css; mv style.tmp style2.css");
|
|
system("touch style1.css");
|
|
|
|
header("Location: ./");
|
|
|
|
?>
|