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.text_input("Enter terminal command", placeholder="e.g., ls, pwd, echo 'Hello World'")
|
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_input("Enter terminal command", placeholder="e.g., ls, pwd, echo 'Hello World'", height=100)
|
15 |
|
16 |
# Button to run the command
|
17 |
if st.button("Run Command"):
|