A
Ant
Hi all,
Using cygwin and Python 2.5, I have the following scripts, one bash
script and the other a python script:
-------------------------------------------------------------------------------
#!/bin/bash
TEST_VAR=`./test.py`
TEST_VAR2=Test2
echo "Test var: $TEST_VAR OK"
echo "Test var2: $TEST_VAR2 OK"
----------------------------------------------------------------------------------
#!/usr/bin/python
print "Testing",
Running the bash script, I get the following output:
OKt var: Testing
Test var2: Test2 OK
Does anyone have any idea why the script would mess up the first echo?
Are there some kind of control characters being appended to the python
output in Windows? Looks like a CR character, but why?
Cheers,
Using cygwin and Python 2.5, I have the following scripts, one bash
script and the other a python script:
-------------------------------------------------------------------------------
#!/bin/bash
TEST_VAR=`./test.py`
TEST_VAR2=Test2
echo "Test var: $TEST_VAR OK"
echo "Test var2: $TEST_VAR2 OK"
----------------------------------------------------------------------------------
#!/usr/bin/python
print "Testing",
Running the bash script, I get the following output:
OKt var: Testing
Test var2: Test2 OK
Does anyone have any idea why the script would mess up the first echo?
Are there some kind of control characters being appended to the python
output in Windows? Looks like a CR character, but why?
Cheers,