10 lines
238 B
Python
Executable File
10 lines
238 B
Python
Executable File
#!/usr/bin/env python3
|
|
__author__ = 'dev'
|
|
|
|
response_file_path = "cgi-bin/test.html"
|
|
response_file = open(response_file_path, "r")
|
|
response_file_content = response_file.read()
|
|
response_file.close()
|
|
|
|
print("\n")
|
|
print(response_file_content) |