summaryrefslogtreecommitdiff
path: root/.local/bin/upper
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/upper')
-rwxr-xr-x.local/bin/upper5
1 files changed, 5 insertions, 0 deletions
diff --git a/.local/bin/upper b/.local/bin/upper
new file mode 100755
index 0000000..e3d8d45
--- /dev/null
+++ b/.local/bin/upper
@@ -0,0 +1,5 @@
+#!/usr/local/bin/python3
+while True:
+ userIn = input("> ").upper()
+ if userIn == "EXIT": break
+ print(userIn)