PhoenixStormJr's picture
Update app.py
b93d7b6 verified
raw
history blame
413 Bytes
import streamlit as st
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:
output = subprocess.run(commandList, stdout=subprocess.PIPE).stdout.decode('utf-8')
st.write(f"{command}: \n {output}")