Re: is tcl a reasonable alternative to unix shell scripts?



Charles Russell wrote:
Jeff Godfrey wrote:
I note that python and ruby have equivalents to the unix "find" command, but I cannot find on skimming the tcl documentation that it has a good set of tools for manipulating the file system.

Hi Charles,

Tcl has a library of "common" functions and utilities known as "tcllib". While it's not part of the "core" of tcl, it's readily available and easy to load and use. Among (many) other things, that library contains a module named "fileutil", which in turn contains "fileutil::find" - which is a Tcl variation of the Unix "find" command.

That said, the Tcl core does contain *many* file (and filesystem) related commands, most of which are collected under the "file" ensemble command. So, check out "file" and its many sub-commands in the standard Tcl man-pages for most of the built-in file support, and take a look at the "fileutil" module of tcllib for other (mostly) higher-level file utilities.


I'm using cygwin with bash console interface (X-windows not installed), mostly for fortran console applications. The cygwin distribution of tcl/tk (tk seems to work even without X-windows!) does not include tcllib, so I got the sourceforge distribution and followed the installation instructions. However, the tutorials I have found do not explain how to load and invoke packages. What is the command syntax to test my tcllib installation by invoking, for example, fileutil::cat under tclsh?

see the man page for package, but it is simply

package require fileutil
fileutil::cat $file

Also, if you look at the docs for fileuitl (or any of the tcllib stuff)
is should show the packlage rquire needed for the commands in the synopsis.

An online locatin of the docs is hosted by activestate here:

http://aspn.activestate.com/ASPN/docs/ActiveTcl/8.4/tcllib/fileutil/fileutil.html

Bruce
.



Relevant Pages

  • ANN: AOLserver 4.5.0 released!
    ... On behalf of the AOLserver Team, I have the honor of announcing the ... AOLserver 4.5.0 is a major upgrade including several new Tcl commands, ... AOLserver is America Online's Open-Source web server. ... the "ns_zlib" command for compressing and uncompressing ...
    (comp.lang.tcl)
  • Tcl-URL! - weekly Tcl news and links (Mar 5)
    ... GRIDPLUS2 is a Tile based version of GRIDPLUS. ... *) New "gpselect" command to select a tablelist row or tree node. ... Some people take their license issues very personal indeed;-) (and ... Word documents via Tcl and tcom - ...
    (comp.lang.tcl)
  • Re: is tcl a reasonable alternative to unix shell scripts?
    ... command, but I cannot find on skimming the tcl documentation that it has a good set of tools for manipulating the file system. ... Tcl has a library of "common" functions and utilities known as "tcllib". ... So, check out "file" and its many sub-commands in the standard Tcl man-pages for most of the built-in file support, and take a look at the "fileutil" module of tcllib for other higher-level file utilities. ... The cygwin distribution of tcl/tk does not include tcllib, so I got the sourceforge distribution and followed the installation instructions. ...
    (comp.lang.tcl)
  • Re: is tcl a reasonable alternative to unix shell scripts?
    ... command, but I cannot find on skimming the tcl documentation that it ... Tcl has a library of "common" functions and utilities known as ... take a look at the "fileutil" module of tcllib for other ...
    (comp.lang.tcl)
  • Re: Core commands as ensembles...
    ... command that does much the same as [namespace code], ... TCL as their scripting/console engine. ... home-brew bits and pieces, in which I will use TCL in any way that I ...
    (comp.lang.tcl)