Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,6 @@ if st.button("Run Command"):
|
|
24 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
25 |
|
26 |
# Display the output in the Streamlit app
|
27 |
-
st.success("Command executed successfully!")
|
28 |
st.subheader("📜 Command Output:")
|
29 |
st.code(result.stdout, language="bash")
|
30 |
|
|
|
24 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
25 |
|
26 |
# Display the output in the Streamlit app
|
|
|
27 |
st.subheader("📜 Command Output:")
|
28 |
st.code(result.stdout, language="bash")
|
29 |
|