mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-08 14:26:16 +01:00
13 lines
125 B
Plaintext
13 lines
125 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
date=`date -u '+%a, %d %b %Y %H:%M:%S %Z'`
|
||
|
|
|
||
|
|
cat << EOF
|
||
|
|
Content-type: text/plain
|
||
|
|
Expires: $date
|
||
|
|
|
||
|
|
Hello World
|
||
|
|
|
||
|
|
EOF
|
||
|
|
|