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