@codebrainz Just make it work on windows with command only without script file as suggested.
Commands:
python -c "import sys; sys.stdout.write(sys.stdin.read().lower())"
python -c "import sys; sys.stdout.write(sys.stdin.read().upper())"
python -c "import sys; sys.stdout.write(sys.stdin.read().title())"
But it's a bit different from linux, to make it work need to make sure following tips are applied.
Tips:
PATH
.python -c "import sys; sys.stdout.write(sys.stdin.read().lower())"
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.