This is what I'm trying to do (it's just an example, not a real code):
\immediate\write18{echo "price: $5.00" > temp.tex}
\input{temp.tex}
This is what I see in temp.tex:
price: .00
What is a possible workaround?
|
This is what I'm trying to do (it's just an example, not a real code):
This is what I see in
What is a possible workaround? |
|||
|
"Special" here is special to your shell so it depends which shell you are using. If I execute
in bash I get
So I need to execute
to get price: $5.00 so I would need
to get a
|
|||||
|
\write18. I usually do this. – mozartstraße Oct 7 '12 at 10:37