Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ st.title("🖥️ Simple Terminal Emulator")
|
|
11 |
st.write("Enter a command and see the result below. This works just like your terminal!")
|
12 |
|
13 |
# Input field for terminal command
|
14 |
-
command = st.
|
15 |
|
16 |
# Button to run the command
|
17 |
if st.button("Run Command"):
|
|
|
11 |
st.write("Enter a command and see the result below. This works just like your terminal!")
|
12 |
|
13 |
# Input field for terminal command
|
14 |
+
command = st.text_area("Enter terminal command")
|
15 |
|
16 |
# Button to run the command
|
17 |
if st.button("Run Command"):
|