AW: echo foo.txt, like "cat foo.txt"

2005-08-01 Thread Jan.Materne
1. August 2005 20:38 >An: Burgess, Benjamin >Cc: Ant Users List; Andrew Goktepe >Betreff: Re: echo foo.txt, like "cat foo.txt" > >On 8/1/05, Burgess, Benjamin <[EMAIL PROTECTED]> wrote: >> To print a file to the screen you could do this: >> >> > me

Re: echo foo.txt, like "cat foo.txt"

2005-08-01 Thread THUFIR HAWAT
On 8/1/05, Burgess, Benjamin <[EMAIL PROTECTED]> wrote: > To print a file to the screen you could do this: > > > > > Ben That's great, Ben, really appreciate that :) -Thufir - To unsubscribe, e-mail: [EMAIL PROTECTED] For a

RE: echo foo.txt, like "cat foo.txt"

2005-08-01 Thread Burgess, Benjamin
To print a file to the screen you could do this: Ben -Original Message- From: Andrew Goktepe [mailto:[EMAIL PROTECTED] Sent: Saturday, July 30, 2005 7:49 PM To: Ant Users List; THUFIR HAWAT Subject: Re: echo foo.txt, like "cat foo.txt" Try it without the trailing slash

Re: echo foo.txt, like "cat foo.txt"

2005-07-30 Thread Andrew Goktepe
Try it without the trailing slash in the dir attribute (dir="/home/thufir/java"). On 7/30/05, THUFIR HAWAT <[EMAIL PROTECTED]> wrote: > > > Heh, thanks. Here's what I have: > > > dir ="/home/thufir/java/" > files ="foo.txt" > /> > > > I want "/home/thufir/java/foo.txt" to be appended to

Re: echo foo.txt, like "cat foo.txt"

2005-07-30 Thread THUFIR HAWAT
On 7/30/05, Juergen Hermann <[EMAIL PROTECTED]> wrote: > On Sat, 30 Jul 2005 08:32:45 +0100, THUFIR HAWAT wrote: > > >I'm looking at but > >don't see how to echo a file to the screen (System.out?). > > what you'd use in linux, namely . > > Ciao,

Re: echo foo.txt, like "cat foo.txt"

2005-07-30 Thread Juergen Hermann
On Sat, 30 Jul 2005 08:32:45 +0100, THUFIR HAWAT wrote: >I'm looking at but >don't see how to echo a file to the screen (System.out?). what you'd use in linux, namely . Ciao, Jürgen

echo foo.txt, like "cat foo.txt"

2005-07-30 Thread THUFIR HAWAT
I'm looking at but don't see how to echo a file to the screen (System.out?). I'm in linux, so it'd be something like: $ cat foo.txt or $ cat foo.txt -n in windows C:> type foo.txt How would is that done from ant so that it's platform indepen