"Daniel L. Rall" wrote:
>
> Travis Low wrote:
> >
> > Jon Stevens wrote:
> > > [snip]
> > > also, we need to clean this stuff up. doing the generation of stuff is a
> > > major PITA. we need some nice shell scripts.
> >
> > I will help with this if someone will give me a todo list. I can work with
> > shells just fine, but is perl okay?
>
> Perl is more portable (if coded up correctly).
+1 for Perl. It IS portable as far as no cirtical system access is
required. This perfectly fit our needs for Torque. Pattern is far easy
using perl.
Drawback: installing Perl. (at least for Windows and Mac users)
-1 for shells, since shell scripts cannot do anything but calling
applications. And usually those applications are not portable. (or you
have to install them)
Example: removing a file:
shell on unix: rm filename
shell on windows: del filename
Perl (anywhere): unlink filename;
BTW: .bat files are not portable.
Other Solution:
Using Java and Ant. But I do not know Ant enough to know if it could fit
our needs.
> --
>
> Daniel Rall <[EMAIL PROTECTED]>
> http://collab.net/ | open source | do the right thing
>
> ------------------------------------------------------------
> To subscribe: [EMAIL PROTECTED]
> To unsubscribe: [EMAIL PROTECTED]
> Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
> Problems?: [EMAIL PROTECTED]
--
mailto:[EMAIL PROTECTED] http://www.idbsoft.ch
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]