On my system, the extension .py is associated with python
If I run
in 4nt, it runs prog.py with the parameter -a, as if I had typed
However, if I do the same in tcc le 14.00.3, it ignores the parameter -a and acts is if I had just typed
Oddly (to me), if I create an alias
and then type
then the -a is passed along to the program
How do I make tcc behave like 4nt and pass along the parameter when the line starts with a comma?
If I run
Code:
,prog.py -a
Code:
python prog.py -a
However, if I do the same in tcc le 14.00.3, it ignores the parameter -a and acts is if I had just typed
Code:
python prog.py
Oddly (to me), if I create an alias
Code:
alias prog prog.py
Code:
prog -a
How do I make tcc behave like 4nt and pass along the parameter when the line starts with a comma?