RE: how to copy/move a file to dynamically generated file name

2002-06-14 Thread Chabbewal, Navjeet
: Wednesday, June 12, 2002 4:20 PM To: [EMAIL PROTECTED] Subject: how to copy/move a file to dynamically generated file name How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines

how to copy/move a file to dynamically generated file name

2002-06-12 Thread Chabbewal, Navjeet
How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines in env.properties file (say two properties dev.hostname and dev.realm) ? Thanks. Navjeet S. Chabbewal Dimension Data -- To

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Dominique Devienne
a file to dynamically generated file name How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines in env.properties file (say two properties dev.hostname and dev.realm) ? Thanks. Navjeet S

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Dominique Devienne
to copy/move a file to dynamically generated file name How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines in env.properties file (say two properties dev.hostname and dev.realm) ? Thanks

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Alexey Solofnenko
/move a file to dynamically generated file name How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines in env.properties file (say two properties dev.hostname and dev.realm) ? Thanks. Navjeet

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Dominique Devienne
tofile=BOMBAY_DEV.xml /. Read the manual would help with this kind of questions ;-) --DD -Original Message- From: Chabbewal, Navjeet [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 4:20 PM To: [EMAIL PROTECTED] Subject: how to copy/move a file to dynamically generated file name How

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Chabbewal, Navjeet
with this kind of questions ;-) --DD -Original Message- From: Chabbewal, Navjeet [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 4:20 PM To: [EMAIL PROTECTED] Subject: how to copy/move a file to dynamically generated file name How can use copy/move to copy/move a file say

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Alexey Solofnenko
: how to copy/move a file to dynamically generated file name How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines in env.properties file (say two properties dev.hostname and dev.realm

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Dominique Devienne
generated file name How can use copy/move to copy/move a file say template.xml to BOMBAY_DEV.xml, a dynamically generated filename, where BOMBAY and DEV are two properties defines in env.properties file (say two properties dev.hostname and dev.realm) ? Thanks. Navjeet S. Chabbewal Dimension

RE: how to copy/move a file to dynamically generated file name

2002-06-12 Thread Diane Holt
--- Chabbewal, Navjeet [EMAIL PROTECTED] wrote: I forgot to mention one thing, the environment name used in properties file (dev in this case) is passed in to ant as -D property deployEnv. So I tried ${${deployEnv}.hostname}_${${deployEnv}.realm}.xml but that does not seem to work. The