Add system info generation to hello world script
This commit is contained in:
parent
9209f0bf3f
commit
372e11f0c2
@ -1,6 +1,13 @@
|
|||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
class HelloWorld:
|
class HelloWorld:
|
||||||
"""docstring for SampleModule."""
|
"""docstring for SampleModule."""
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
print("This shows that your installation is working correctly.")
|
print("This shows that your installation is working correctly.")
|
||||||
print("You can now start using the tool.")
|
print("You can now start using the tool.")
|
||||||
|
output = subprocess.check_output("cat /etc/*-release", shell=True).decode("UTF-8")
|
||||||
|
print("Your system information \n" + output)
|
||||||
|
with open("your_system_information.txt", "w") as file:
|
||||||
|
file.write(output)
|
||||||
|
Loading…
Reference in New Issue
Block a user