I am using the tcsh shell of Cygwin. I installed Cygwin because I have a prof giving a bunch of instructions in Linux/Mac and they are all using csh commands.
When I type this:
cat some_file.txt | some_python_script.py
I get this:
some_python_script.py: Command not found.
Where some_python_script.py is a script that should be run on the stdin. How can I get my Python scripts to work in Cygwin like if I was in a linux/Mac environment?
Thanks!