Last active
July 19, 2023 07:14
-
-
Save akarapatakis/dc747ff623c93fca624e967c79131ca4 to your computer and use it in GitHub Desktop.
A dummy script for escaping from the python interpreter. Works in pythonanywhere, tested in python.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
while (True): | |
x = input("::> ") | |
os.system(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment