PhoenixStormJr
commited on
Commit
•
1d7b617
1
Parent(s):
4b4303b
Update app.py
Browse files
app.py
CHANGED
@@ -13,5 +13,6 @@ else:
|
|
13 |
st.write(f"\"{commandList}\"")
|
14 |
st.write(f"\"{len(commandList)}\"")
|
15 |
st.write(f"\"{commandList[0]}\"")
|
|
|
16 |
output = subprocess.run(commandList, stdout=subprocess.PIPE).stdout.decode('utf-8')
|
17 |
st.write(f"{command}: \n {output}")
|
|
|
13 |
st.write(f"\"{commandList}\"")
|
14 |
st.write(f"\"{len(commandList)}\"")
|
15 |
st.write(f"\"{commandList[0]}\"")
|
16 |
+
st.write(f"\"{len(commandList[0])}\"")
|
17 |
output = subprocess.run(commandList, stdout=subprocess.PIPE).stdout.decode('utf-8')
|
18 |
st.write(f"{command}: \n {output}")
|