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