File size: 598 Bytes
a221723
 
1e9fbd8
 
 
b93d7b6
 
 
 
 
 
 
f0bec43
 
4b4303b
1d7b617
b93d7b6
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import streamlit as st

import subprocess
import os

command = st.text_input("Command: ", "")
commandList = command.split(' ')
if(commandList[0] == "cd"):
    os.chdir(commandList[1])
    output = subprocess.run(['pwd'], stdout=subprocess.PIPE).stdout.decode('utf-8')
    st.write(f"{command}: \n {output}")
else:
    st.write(f"\"{commandList}\"")
    st.write(f"\"{len(commandList)}\"")
    st.write(f"\"{commandList[0]}\"")
    st.write(f"\"{len(commandList[0])}\"")
    output = subprocess.run(commandList, stdout=subprocess.PIPE).stdout.decode('utf-8')
    st.write(f"{command}: \n {output}")