Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 280 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 280 Bytes

Linux Terminal

This is the terminal from Ubuntu, now available on every device!

Source Code

import os

pink = "\033[0;31m"
white = "\033[0;37m"
while True:
     print(pink + "zacharyrude@ubuntu:~$", end=" ")
     cmd = input(white)
     os.system(cmd)