How to write a variable in to file in ant?

后端 未结 2 1614
南方客
南方客 2021-02-01 15:37

i have a variable abc and had the value this is ant script. This abc variable will keep on changing.

Using ANT script, how can i write

2条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 16:24

    The echo task in ANT is able to write to files

    
       abc=${abc}
    
    

提交回复
热议问题