Saturday 16 October 2010

Google's Dynamic Feed Wizard + feeding Facebook problem and hacked solution

Google's Dynamic Feed Wizard is really good.


http://www.google.com/uds/solutions/wizards/dynamicfeed.html

BUT I found a problem with facebook feeds. The feed displayed fine BUT the links to go to external feed or items were relative links to local site.
e.g. /posted.php?id=199235386657&share_id=155115854527260&comments=1#s155115854527260 instead of:
http://www.facebook.com//posted.php?id=199235386657&share_id=155115854527260&comments=1#s155115854527260


This is where we're using it: http://lhra.info/
See also the changed javascript: (hardcoded for facebook feed as it is at current moment in time = Oct17 2010) http://lhra.info/gfdynamicfeedcontrol_forfacebook.js

Also changed is ability to default title link to not what is returned by RSS feed.

 wwwLHRA$ diff -u gfdynamicfeedcontrol.js gfdynamicfeedcontrol_forfacebook.js
--- gfdynamicfeedcontrol.js    2010-10-17 01:23:52.000000000 +0100
+++ gfdynamicfeedcontrol_forfacebook.js    2010-10-17 02:39:08.000000000 +0100
@@ -27,7 +27,7 @@
   this.feeds = [];
   this.results = [];

-alert("debug feedUrls:"+feedUrls);
+//alert("debug feedUrls:"+feedUrls);

   if (typeof feedUrls == 'string') {
     this.feeds.push({url:feedUrls});
@@ -45,7 +45,7 @@
       o.title = s.replace(//g, '>');
     }
       }
-alert("debug maybe url:"+o.url);
+//alert("debug maybe url:"+o.url);
       this.feeds.push(o);
     }
   }
@@ -115,7 +115,8 @@
     sortByDate : false,
     horizontal : false,
     stacked : false,
-    title : null
+    title : null,
+    titleurl : null
   };

   if (options) {
@@ -162,7 +163,7 @@
   // The feedControl instance for generating entry HTML.
   this.feedControl = new google.feeds.FeedControl();
   this.feedControl.setLinkTarget(this.options.linkTarget);
-alert("debug this.options.linkTarget:"+this.options.linkTarget);
+//alert("debug this.options.linkTarget:"+this.options.linkTarget);


   // The feeds
@@ -174,7 +175,7 @@
     feed.setResultFormat(google.feeds.Feed.JSON_FORMAT);
     feed.setNumEntries(this.options.numResults);
     feed.load(this.bind_(this.feedLoaded_, i));
-alert("debug feed "+i+" :"+feed);
+//alert("debug feed "+i+" :"+feed);
   }
 };

@@ -217,6 +218,14 @@
   if (this.feeds[index].title) {
     result.feed.title = this.feeds[index].title;
   }
+//alert("debug result:"+result+" tit:"+result.feed.title);
+//alert("debug feed i:"+index+" result:"+result+" tit:"+result.feed.title+" lin:"+result.feed.link);
+  var entries = result.feed.entries;
+  // CHANGE RELATIVE Facebook URL to ABSOLUTE for use in external page
+  for (var i = 0; i < entries.length; i++) {
+    //alert("debug ent i:"+i+" e:"+entries[i]+" tit:"+entries[i].title+" //lin:"+entries[i].link);
+    result.feed.entries[i].link="http://www.facebook.com/"+entries[i].link
+  }
   this.results.push(result);

   if (!this.started) {
@@ -375,9 +384,14 @@
   this.clearNode_(el);
   var link = document.createElement('a');
   link.target = google.feeds.LINK_TARGET_BLANK;
-  link.href = resultFeed.link;
+  // SET The URL the feed title links to (was http://www.facebook.com, we wish to link to facebook/ourgroup)
+  if (this.options.titleurl == null) {
+    this.options.titleurl = resultFeed.link;
+  }
+  link.href = this.options.titleurl;
   link.className = 'gfg-collapse-href';
   link.innerHTML = resultFeed.title;
+//alert("debug title link:"+link+"  link.href:"+link.href);
   el.appendChild(link);
 }

@@ -408,10 +422,13 @@
     var className = 'gfg-listentry ';
     className += (i%2)?'gfg-listentry-even':'gfg-listentry-odd';
     var listEntry = this.createDiv_(className);
-alert("debug entry create link:"+entries[i].link+"  title:"+entries[i].title);
-    var link = this.createLink_("http://www.facebook.com/"+entries[i].link,
+//alert("debug entry create link:"+entries[i].link+"  title:"+entries[i].title);
+    // adjusting the link URL here (from relative to absolute) worked for list elements but not selected item
+    //entries[i].link="http://www.facebook.com/"+entries[i].link
+    var link = this.createLink_(entries[i].link,
                                 entries[i].title,
                                 this.options.linkTarget);
+
     listEntry.appendChild(link);
     if (this.options.pauseOnHover) {
       listEntry.onmouseover = this.bind_(this.listMouseOver_, resultIndex, i);


Javascript debugger (Venkmann+Firefox) a bit crashy, hence the old alert("") style debugging.


One thing to do to change this from hack to good solution would be detect relative URLs (look for beginning which is not http:// or file:// ...) and do the right thing.




Surprised grepping internet to not find people finding this problem ... ?

Saturday 11 September 2010

Bus Eireann Route Plan: unintended scenic diversion


This is quite funny if you know Limerick. The route planner adds in 5 bus trips to cover a short distance in the city center.

Dublin to University of Limerick, via Limerick city centre and a selected tour of the city centre and a suburb. Fionnuala was hoping that perhaps the Dublin Bus might still stop at the University on the way.

Beware tourists and computer users everywhere!

:)

Friday 10 September 2010

bash/sh/ksh syntax: function needs whitespace after initial {

# this is broken:
$ function cdt {cd $TTM_TESTS_DIR;pwd;}

# this is also broken:
$ function cdt { cd $TTM_TESTS_DIR;pwd }

# this is okay
$ function cdt { echo "tcl isn't the only language with whitespace-dependant syntax. though looking mostly like a tokenised parsed language.";cd $TTM_TESTS_DIR;pwd;}

So like tcl sh/bash not really parsed in a properly tokenised way.
Mmmm.
Specifically here:
1. needs whitespace after first { of function
2. needs ; after last command before closing }  (doesn't matter about whitespace here)

Aliases are bad. For many reasons.One reason being vars in aliases expanded at definition time.
So if the variable is redefined then the alias doesn't match. Alias must also be redefined when changing variable.

man bash explains it better and says: "For almost every purpose, aliases are superseded by shell functions."
 http://www.gnu.org/software/bash/manual/bashref.html#Aliases




Best answer ever to question on parsing html tags with regular expressions:
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454
This is more fun as it has a lovely pic of Cthulhu for illustrative purposes.
http://www.codinghorror.com/blog/2009/11/parsing-html-the-cthulhu-way.html
Cthulhu  ach, Cthulhu isn’t in my spell-check dictionary!
What an oversight!
Tsk!




Checked functrion cdt on a few bash versions.
These are the errors seen:

GNU bash, version 3.2.49(23)-release (i686-pc-cygwin)
GNU bash, version 3.2.25(1)-release (x86_64-redhat-linux-gnu)
sh on qnx is ksh 6.4.1

sh: syntax error near unexpected token `{cd'    (sh on this cygwin IS bash)
bash: syntax error near unexpected token `{cd'
-bash: syntax error near unexpected token `{cd'


qnx$ strings $(which sh) |grep -C8 -i version
The ksh is a public-domain version of the Korn shell. It's a command
interpreter that's intended for both interactive and shell
script use.
For more information please refer to a ksh or unix shell reference.
NAME=ksh
DESCRIPTION=Public Domain Korn Shell
DATE=2009/05/20-17:46:32-EDT
STATE=stable
HOST=cctrunk
USER=builder
TAGID=166
VERSION=6.4.1

Friday 3 September 2010

Oopsie daisies! http 404 error.

Just had some fun customising http 404 error page:


http://gmds.ie/gehbroked

In the spirit of fun:
http://www.dzinesoup.com/44-amazing-and-creative-404-error-pages/

GMDS, Glencullen Musical and Dramatic Society new web pages: http://www.gmds.ie just got hosting and domain registered with Blacknight. Trying out the default content management: Plesk. Putting some initial content up on site.

logo, sad theatre mask for 404 error page:  :)



TITLE: http 404 error: This page is not found.


Oopsie Daisies!


http 404 error: This page is not found.





Something is broken on the internet.
Do not fear!
We are alerting the appropriate authorities.
The entity responsible for the error will be traced and chastised appropriately.


Please carry on Forwards or Backwards ... or perhaps Sideways or Up or Down ...






And image transparency for logos, banners. In GIMP. Layers - add alpha channel, select part of image, Edit - clear, unselect mask layer before saving, save as png (jpg doesn't handle transparency.


logo:



Friday 13 August 2010

Concerning inventors|scientists and motivations for inventing|investigating



On mad inventors/scientists the book Jonathan has loaned me is very interesting and excellent.

I'm reading the 3rd in the cycle now: The System of the World.
 The Society for the Raising of Water by Fire. (That is, using steam engines to pump water out of mines.)  has started out. I also have recently read a book for kids: Dead Famous Inventors and their Bright Ideas. http://en.wikipedia.org/wiki/Dead_Famous_%28series%29 
Which through development of steam engines. Very good.
From when steam was used as curiosity/toy - ancient Greeks.
To when it was put to more practical use driving pumps - but very inefficiently.
To when the engines were improved and refined to make more efficient and less likely to explode.
 "Look out! The device for the raeising of water from mining pitts through the use of fyre is going to explode!"
 "What!? I can't hear you! The device for the raeising of water from mining pitts through the use of fyre is making too much loud hissing and creaking noises!"
 :-D lots of LOL!
 Beware, I totally misquote and paraphrase.

http://www.amazon.co.uk/Inventors-Their-Bright-Ideas-Famous/dp/0439981093

http://www.scribd.com/doc/31833394/History-of-Mechanical-Inventions
See p310 (p293 in scanned book = page 308 in search bar, Chap X1 Production and Application of Power 1500-1830, II Pumps.) for the newcomen Engine


Amazing how interesting economics can be made :)


I like the idea that the working inventions seem to fall out as side effects of the efforts of attempting to invent completely mad things! Flight seems to have been a very common starting motive for many to get started. http://en.wikipedia.org/wiki/Robert_Hooke And living forever seems to be another.

Mercury the element/liquid, Mercury the god/planet.


Mercury: or the Secret and Swift Messenger
"Shewing how a man may with privacy and speed communicate his thoughts to a friend at any distance" by John Wilkins


cONcerning cryptography and communications.
see chapter 15 on comms: 
C H A P . I 5 .
Concerning the swiftnesse of informati-
    ons, either by
qualities, as the impressi-
    on of imagination, and the sensitive spe-
    cies; or by spirituall
substances, as
    Angels.






The Method observed in Transfusing the bloud out of one Animal into another.
 Ouch! 



fascinating stuff!



Rough audit of cygwin packages installed.

I find myself again making a list of cygwin package dependancies.
So it is time to blog it so that I'll have it in the future.

Two lines to do a rough audit:

  PACKAGES=$(cygcheck -c -d|awk '{print $1}'|grep -v ^lib)
  for P in $PACKAGES ; do echo PACKAGE=$P; cygcheck -c -d $P; cygcheck -l $P |grep bin; done |tee cygwin_rough_audit.txt

My basic summary list of packages:

## Packages will be selected or left out depending on what you want to do with cygwin.
## List of packages leaves out libs, and a good few others installed.
## Also includes base and packages which are in (now) by default but which merit mention.
## Peruse the full cygwin_rough_audit.txt file you generate to discover some other utils you never knew you had.

base cygwin packages ...
PACKAGE=bash
PACKAGE=chkconfig
PACKAGE=coreutils
PACKAGE=cygutils
PACKAGE=cygwin

tar/zip tools ...
PACKAGE=bzip2
PACKAGE=gzip
PACKAGE=p7zip
PACKAGE=sharutils
PACKAGE=tar
PACKAGE=zip
PACKAGE=unzip

quite useful utils ...
PACKAGE=file
PACKAGE=findutils
PACKAGE=gawk
PACKAGE=gettext
PACKAGE=grep
PACKAGE=less
PACKAGE=sed
PACKAGE=time
PACKAGE=vim

quite useful terminal things ...
PACKAGE=mc
PACKAGE=rxvt
PACKAGE=screen

quite useful apps and utils ...
PACKAGE=curl
PACKAGE=links
PACKAGE=mutt
PACKAGE=rsync
PACKAGE=wget

cygwin server things (ssh seperate) ...
PACKAGE=cygrunsrv
PACKAGE=inetutils
PACKAGE=initscripts
PACKAGE=xinetd
PACKAGE=cron
PACKAGE=lighttpd
PACKAGE=openssh
ssh client and server
PACKAGE=openssh
PACKAGE=sysvinit
/sbin/init.exe
/sbin/killall5.exe
/sbin/runlevel.exe
/usr/bin/last.exe
/usr/bin/utmpdump.exe

scripting/interpreters ...
PACKAGE=perl
PACKAGE=python
PACKAGE=ruby
PACKAGE=tcltk
PACKAGE=tcsh

gcc, make dev packages ...
PACKAGE=binutils
PACKAGE=autoconf
PACKAGE=automake
PACKAGE=gcc
PACKAGE=gdb
PACKAGE=make
PACKAGE=gcc mingw stuff
PACKAGE=git-gui
PACKAGE=patch
PACKAGE=subversion

various other misc apps and utils ...
PACKAGE=bc
PACKAGE=clamav
PACKAGE=cpio
PACKAGE=dejagnu
PACKAGE=diffutils
PACKAGE=expect
PACKAGE=figlet
PACKAGE=ghostscript
PACKAGE=gnuplot
PACKAGE=gtypist
PACKAGE=guile
PACKAGE=gv
PACKAGE=ncftp
PACKAGE=netcat
PACKAGE=Numeric
PACKAGE=octave
PACKAGE=ping
PACKAGE=procps
PACKAGE=psutils
PACKAGE=rdtool
PACKAGE=readline
PACKAGE=rebase
PACKAGE=util-linux
PACKAGE=which
PACKAGE=wtf

X things
PACKAGE=X, gtk, xinit, ...
PACKAGE=fvwm
PACKAGE=xauth
PACKAGE=xemacs


================================================================================
cygwin_rough_audit.txt

PACKAGE=Cygwin
Cygwin Package Information
Package              Version
cygwin               1.7.5-1
/usr/bin/cygcheck.exe
/usr/bin/cyglsa-config
/usr/bin/cyglsa.dll
/usr/bin/cyglsa64.dll
/usr/bin/cygpath.exe
/usr/bin/cygserver-config
/usr/bin/cygwin-console-helper.exe
/usr/bin/cygwin1.dll
/usr/bin/dumper.exe
/usr/bin/getfacl.exe
/usr/bin/kill.exe
/usr/bin/ldd.exe
/usr/bin/ldh.exe
/usr/bin/locale.exe
/usr/bin/mkgroup.exe
/usr/bin/mkpasswd.exe
/usr/bin/mount.exe
/usr/bin/passwd.exe
/usr/bin/ps.exe
/usr/bin/regtool.exe
/usr/bin/setfacl.exe
/usr/bin/setmetamode.exe
/usr/bin/ssp.exe
/usr/bin/strace.exe
/usr/bin/umount.exe
/usr/lib/binmode.o
/usr/lib/libbinmode.a
/usr/sbin/cygserver.exe
PACKAGE=Package
Cygwin Package Information
Package              Version
PACKAGE=_update-info-dir
Cygwin Package Information
Package              Version
_update-info-dir     00896-1
PACKAGE=a2ps
Cygwin Package Information
Package              Version
a2ps                 4.13-1
/usr/bin/a2ps.exe
/usr/bin/card
/usr/bin/composeglyphs
/usr/bin/fixnt.exe
/usr/bin/fixps
/usr/bin/ogonkify
/usr/bin/pdiff
/usr/bin/psmandup
/usr/bin/psset
/usr/bin/texi2dvi4a2ps
PACKAGE=abook
Cygwin Package Information
Package              Version
abook                0.5.6-1
/usr/bin/abook.exe
PACKAGE=alternatives
Cygwin Package Information
Package              Version
alternatives         1.3.30c-10
/usr/sbin/alternatives.exe
/usr/sbin/update-alternatives
PACKAGE=antiword
Cygwin Package Information
Package              Version
antiword             0.37-1
/usr/bin/kantiword
/usr/bin/antiword.exe
PACKAGE=aspell
Cygwin Package Information
Package              Version
aspell               0.60.5-1
/usr/bin/aspell-import
/usr/bin/aspell.exe
/usr/bin/precat
/usr/bin/preunzip
/usr/bin/prezip
/usr/bin/prezip-bin.exe
/usr/bin/pspell-config
/usr/bin/run-with-aspell
/usr/bin/word-list-compress.exe
/usr/share/man/man1/prezip-bin.1.gz
PACKAGE=aspell-de
Cygwin Package Information
Package              Version
aspell-de            20030222.1-1
PACKAGE=aspell-dev
Cygwin Package Information
Package              Version
aspell-dev           0.60.5-1
PACKAGE=aspell-doc
Cygwin Package Information
Package              Version
aspell-doc           0.60.5-1
PACKAGE=aspell-en
Cygwin Package Information
Package              Version
aspell-en            6.0.0-1
PACKAGE=aspell-pl
Cygwin Package Information
Package              Version
aspell-pl            6.0.20061121.0-1
PACKAGE=aspell-sv
Cygwin Package Information
Package              Version
aspell-sv            0.50.2-2
PACKAGE=autoconf
Cygwin Package Information
Package              Version
autoconf             8-1
PACKAGE=autoconf2.1
Cygwin Package Information
Package              Version
autoconf2.1          2.13-10
/usr/bin/autoconf-2.13
/usr/bin/autoheader-2.13
/usr/bin/autoreconf-2.13
/usr/bin/autoscan-2.13
/usr/bin/autoupdate-2.13
/usr/bin/ifnames-2.13
PACKAGE=autoconf2.5
Cygwin Package Information
Package              Version
autoconf2.5          2.65-1
/usr/bin/autoconf-2.65
/usr/bin/autoheader-2.65
/usr/bin/autom4te-2.65
/usr/bin/autoreconf-2.65
/usr/bin/autoscan-2.65
/usr/bin/autoupdate-2.65
/usr/bin/ifnames-2.65
PACKAGE=automake
Cygwin Package Information
Package              Version
automake             4-10
PACKAGE=automake1.10
Cygwin Package Information
Package              Version
automake1.10         1.10.3-1
/usr/bin/aclocal-1.10
/usr/bin/automake-1.10
PACKAGE=automake1.11
Cygwin Package Information
Package              Version
automake1.11         1.11.1-1
/usr/bin/aclocal-1.11
/usr/bin/automake-1.11
PACKAGE=automake1.4
Cygwin Package Information
Package              Version
automake1.4          1.4p6-10
/usr/bin/aclocal-1.4
/usr/bin/automake-1.4
PACKAGE=automake1.5
Cygwin Package Information
Package              Version
automake1.5          1.5-10
/usr/bin/aclocal-1.5
/usr/bin/automake-1.5
PACKAGE=automake1.6
Cygwin Package Information
Package              Version
automake1.6          1.6.3-11
/usr/bin/aclocal-1.6
/usr/bin/automake-1.6
PACKAGE=automake1.7
Cygwin Package Information
Package              Version
automake1.7          1.7.9-10
/usr/bin/aclocal-1.7
/usr/bin/automake-1.7
PACKAGE=automake1.8
Cygwin Package Information
Package              Version
automake1.8          1.8.5-10
/usr/bin/aclocal-1.8
/usr/bin/automake-1.8
PACKAGE=automake1.9
Cygwin Package Information
Package              Version
automake1.9          1.9.6-10
/usr/bin/aclocal-1.9
/usr/bin/automake-1.9
PACKAGE=base-cygwin
Cygwin Package Information
Package              Version
base-cygwin          2.1-1
/bin/copy-user-registry-fstab
PACKAGE=base-files
Cygwin Package Information
Package              Version
base-files           3.9-3
PACKAGE=base-passwd
Cygwin Package Information
Package              Version
base-passwd          3.1-1
PACKAGE=bash
Cygwin Package Information
Package              Version
bash                 3.2.49-23
/usr/bin/bash.exe
/usr/bin/bashbug
/usr/bin/sh.exe
/usr/share/man/man1/bind.1.gz
PACKAGE=bc
Cygwin Package Information
Package              Version
bc                   1.06-2
/usr/bin/bc.exe
/usr/bin/dc.exe
PACKAGE=binutils
Cygwin Package Information
Package              Version
binutils             2.20.51-2
/usr/bin/addr2line.exe
/usr/bin/ar.exe
/usr/bin/as.exe
/usr/bin/c++filt.exe
/usr/bin/dlltool.exe
/usr/bin/dllwrap.exe
/usr/bin/elfedit.exe
/usr/bin/gprof.exe
/usr/bin/ld.exe
/usr/bin/nm.exe
/usr/bin/objcopy.exe
/usr/bin/objdump.exe
/usr/bin/ranlib.exe
/usr/bin/readelf.exe
/usr/bin/size.exe
/usr/bin/strings.exe
/usr/bin/strip.exe
/usr/bin/windmc.exe
/usr/bin/windres.exe
/usr/i686-pc-cygwin/bin/ar.exe
/usr/i686-pc-cygwin/bin/as.exe
/usr/i686-pc-cygwin/bin/ld.exe
/usr/i686-pc-cygwin/bin/nm.exe
/usr/i686-pc-cygwin/bin/ranlib.exe
/usr/i686-pc-cygwin/bin/strip.exe
/usr/share/doc/Cygwin/binutils-2.20.51-2.README
/usr/share/info/binutils.info.gz
/usr/share/locale/da/LC_MESSAGES/binutils.mo
/usr/share/locale/es/LC_MESSAGES/binutils.mo
/usr/share/locale/fi/LC_MESSAGES/binutils.mo
/usr/share/locale/fr/LC_MESSAGES/binutils.mo
/usr/share/locale/id/LC_MESSAGES/binutils.mo
/usr/share/locale/ja/LC_MESSAGES/binutils.mo
/usr/share/locale/ro/LC_MESSAGES/binutils.mo
/usr/share/locale/ru/LC_MESSAGES/binutils.mo
/usr/share/locale/rw/LC_MESSAGES/binutils.mo
/usr/share/locale/sk/LC_MESSAGES/binutils.mo
/usr/share/locale/sv/LC_MESSAGES/binutils.mo
/usr/share/locale/tr/LC_MESSAGES/binutils.mo
/usr/share/locale/uk/LC_MESSAGES/binutils.mo
/usr/share/locale/vi/LC_MESSAGES/binutils.mo
/usr/share/locale/zh_CN/LC_MESSAGES/binutils.mo
/usr/share/locale/zh_TW/LC_MESSAGES/binutils.mo
PACKAGE=bool
Cygwin Package Information
Package              Version
bool                 0.2.1-1
/usr/bin/bool.exe
PACKAGE=boxes
Cygwin Package Information
Package              Version
boxes                1.0.1a-1
/usr/bin/boxes.exe
PACKAGE=brltty
Cygwin Package Information
Package              Version
brltty               4.1-1
/usr/bin/brltty-config
/usr/bin/brltty-install
/usr/bin/brltty.exe
PACKAGE=build-docbook-catalog
Cygwin Package Information
Package               Version
build-docbook-catalog 1.5-1
/usr/bin/build-docbook-catalog
PACKAGE=bzip2
Cygwin Package Information
Package              Version
bzip2                1.0.5-10
/usr/bin/bunzip2.exe
/usr/bin/bzcat.exe
/usr/bin/bzcmp
/usr/bin/bzdiff
/usr/bin/bzegrep
/usr/bin/bzfgrep
/usr/bin/bzgrep
/usr/bin/bzip2.exe
/usr/bin/bzip2recover.exe
/usr/bin/bzless
/usr/bin/bzmore
PACKAGE=catdoc
Cygwin Package Information
Package              Version
catdoc               0.94.2-3
/usr/bin/catdoc.exe
/usr/bin/catppt.exe
/usr/bin/wordview
/usr/bin/xls2csv.exe
PACKAGE=catgets
Cygwin Package Information
Package              Version
catgets              1.0-1
/usr/bin/gencat.exe
PACKAGE=chkconfig
Cygwin Package Information
Package              Version
chkconfig            1.3.30a-1
/usr/sbin/chkconfig.exe
PACKAGE=clamav
Cygwin Package Information
Package              Version
clamav               0.96-1
/usr/bin/clambc.exe
/usr/bin/clamconf.exe
/usr/bin/clamdscan.exe
/usr/bin/clamdtop.exe
/usr/bin/clamscan.exe
/usr/bin/freshclam.exe
/usr/bin/sigtool.exe
/usr/sbin/clamd.exe
PACKAGE=clamav-db
Cygwin Package Information
Package              Version
clamav-db            0.96-1
PACKAGE=cogito
Cygwin Package Information
Package              Version
cogito               0.18.2-2
/usr/bin/cg
/usr/bin/cg-add
/usr/bin/cg-admin-cat
/usr/bin/cg-admin-ls
/usr/bin/cg-admin-lsobj
/usr/bin/cg-admin-rewritehist
/usr/bin/cg-admin-setuprepo
/usr/bin/cg-admin-uncommit
/usr/bin/cg-branch-add
/usr/bin/cg-branch-chg
/usr/bin/cg-branch-ls
/usr/bin/cg-clean
/usr/bin/cg-clone
/usr/bin/cg-commit
/usr/bin/cg-diff
/usr/bin/cg-export
/usr/bin/cg-fetch
/usr/bin/cg-help
/usr/bin/cg-init
/usr/bin/cg-log
/usr/bin/cg-merge
/usr/bin/cg-mkpatch
/usr/bin/cg-mv
/usr/bin/cg-object-id
/usr/bin/cg-patch
/usr/bin/cg-push
/usr/bin/cg-reset
/usr/bin/cg-restore
/usr/bin/cg-rm
/usr/bin/cg-seek
/usr/bin/cg-status
/usr/bin/cg-switch
/usr/bin/cg-tag
/usr/bin/cg-tag-ls
/usr/bin/cg-tag-show
/usr/bin/cg-update
/usr/bin/cg-version
PACKAGE=compface
Cygwin Package Information
Package              Version
compface             1.5.2-10
/usr/bin/compface.exe
/usr/bin/uncompface.exe
PACKAGE=compface0
Cygwin Package Information
Package              Version
compface0            1.5.2-10
/usr/bin/cygcompface-0.dll
PACKAGE=coreutils
Cygwin Package Information
Package              Version
coreutils            8.5-1
/usr/bin/arch.exe
/usr/bin/base64.exe
/usr/bin/basename.exe
/usr/bin/cat.exe
/usr/bin/chcon.exe
/usr/bin/chgrp.exe
/usr/bin/chmod.exe
/usr/bin/chown.exe
/usr/bin/chroot.exe
/usr/bin/cksum.exe
/usr/bin/comm.exe
/usr/bin/cp.exe
/usr/bin/csplit.exe
/usr/bin/cut.exe
/usr/bin/date.exe
/usr/bin/dd.exe
/usr/bin/df.exe
/usr/bin/dir.exe
/usr/bin/dircolors.exe
/usr/bin/dirname.exe
/usr/bin/du.exe
/usr/bin/echo.exe
/usr/bin/env.exe
/usr/bin/expand.exe
/usr/bin/expr.exe
/usr/bin/factor.exe
/usr/bin/false.exe
/usr/bin/fmt.exe
/usr/bin/fold.exe
/usr/bin/gkill.exe
/usr/bin/groups.exe
/usr/bin/head.exe
/usr/bin/hostid.exe
/usr/bin/hostname.exe
/usr/bin/id.exe
/usr/bin/install.exe
/usr/bin/install.exe.manifest
/usr/bin/join.exe
/usr/bin/link.exe
/usr/bin/ln.exe
/usr/bin/logname.exe
/usr/bin/ls.exe
/usr/bin/md5sum.exe
/usr/bin/mkdir.exe
/usr/bin/mkfifo.exe
/usr/bin/mknod.exe
/usr/bin/mktemp.exe
/usr/bin/mv.exe
/usr/bin/nice.exe
/usr/bin/nl.exe
/usr/bin/nohup.exe
/usr/bin/nproc.exe
/usr/bin/od.exe
/usr/bin/paste.exe
/usr/bin/pathchk.exe
/usr/bin/pinky.exe
/usr/bin/pr.exe
/usr/bin/printenv.exe
/usr/bin/printf.exe
/usr/bin/ptx.exe
/usr/bin/pwd.exe
/usr/bin/readlink.exe
/usr/bin/rm.exe
/usr/bin/rmdir.exe
/usr/bin/runcon.exe
/usr/bin/seq.exe
/usr/bin/sha1sum.exe
/usr/bin/sha224sum.exe
/usr/bin/sha256sum.exe
/usr/bin/sha384sum.exe
/usr/bin/sha512sum.exe
/usr/bin/shred.exe
/usr/bin/shuf.exe
/usr/bin/sleep.exe
/usr/bin/sort.exe
/usr/bin/split.exe
/usr/bin/stat.exe
/usr/bin/stty.exe
/usr/bin/su.exe
/usr/bin/sum.exe
/usr/bin/sync.exe
/usr/bin/tac.exe
/usr/bin/tail.exe
/usr/bin/tee.exe
/usr/bin/test.exe
/usr/bin/timeout.exe
/usr/bin/touch.exe
/usr/bin/tr.exe
/usr/bin/true.exe
/usr/bin/truncate.exe
/usr/bin/tsort.exe
/usr/bin/tty.exe
/usr/bin/uname.exe
/usr/bin/unexpand.exe
/usr/bin/uniq.exe
/usr/bin/unlink.exe
/usr/bin/users.exe
/usr/bin/vdir.exe
/usr/bin/wc.exe
/usr/bin/who.exe
/usr/bin/whoami.exe
/usr/bin/yes.exe
/usr/bin/[.exe
PACKAGE=cpio
Cygwin Package Information
Package              Version
cpio                 2.11-1
/usr/bin/cpio.exe
PACKAGE=cron
Cygwin Package Information
Package              Version
cron                 4.1-59
/usr/bin/cron-config
/usr/bin/cronbug
/usr/bin/cronevents.exe
/usr/bin/cronlog
/usr/bin/crontab.exe
/usr/bin/cron_diagnose.sh
/usr/sbin/cron.exe
PACKAGE=crypt
Cygwin Package Information
Package              Version
crypt                1.1-1
/usr/bin/crypt.exe
/usr/bin/cygcrypt-0.dll
PACKAGE=csih
Cygwin Package Information
Package              Version
csih                 0.9.1-1
PACKAGE=curl
Cygwin Package Information
Package              Version
curl                 7.19.6-1
/usr/bin/curl.exe
PACKAGE=cvs
Cygwin Package Information
Package              Version
cvs                  1.12.13-10
/usr/bin/cvs.exe
/usr/bin/cvsbug
/usr/bin/rcs2log
PACKAGE=cvsps
Cygwin Package Information
Package              Version
cvsps                2.2b1-1
/usr/bin/cvsps.exe
PACKAGE=cygrunsrv
Cygwin Package Information
Package              Version
cygrunsrv            1.34-1
/bin/cygrunsrv.exe
PACKAGE=cygutils
Cygwin Package Information
Package              Version
cygutils             1.4.2-1
/usr/bin/ascii.exe
/usr/bin/banner.exe
/usr/bin/conv.exe
/usr/bin/cygdrop.exe
/usr/bin/cygicons-0.dll
/usr/bin/cygstart.exe
/usr/bin/d2u.exe
/usr/bin/dos2unix.exe
/usr/bin/dump.exe
/usr/bin/getclip.exe
/usr/bin/ipck
/usr/bin/lpr.exe
/usr/bin/mkshortcut.exe
/usr/bin/msgtool.exe
/usr/bin/putclip.exe
/usr/bin/readshortcut.exe
/usr/bin/realpath.exe
/usr/bin/semstat.exe
/usr/bin/semtool.exe
/usr/bin/shmtool.exe
/usr/bin/u2d.exe
/usr/bin/unix2dos.exe
PACKAGE=cygwin
Cygwin Package Information
Package              Version
cygwin               1.7.5-1
/usr/bin/cygcheck.exe
/usr/bin/cyglsa-config
/usr/bin/cyglsa.dll
/usr/bin/cyglsa64.dll
/usr/bin/cygpath.exe
/usr/bin/cygserver-config
/usr/bin/cygwin-console-helper.exe
/usr/bin/cygwin1.dll
/usr/bin/dumper.exe
/usr/bin/getfacl.exe
/usr/bin/kill.exe
/usr/bin/ldd.exe
/usr/bin/ldh.exe
/usr/bin/locale.exe
/usr/bin/mkgroup.exe
/usr/bin/mkpasswd.exe
/usr/bin/mount.exe
/usr/bin/passwd.exe
/usr/bin/ps.exe
/usr/bin/regtool.exe
/usr/bin/setfacl.exe
/usr/bin/setmetamode.exe
/usr/bin/ssp.exe
/usr/bin/strace.exe
/usr/bin/umount.exe
/usr/lib/binmode.o
/usr/lib/libbinmode.a
/usr/sbin/cygserver.exe
PACKAGE=cygwin-doc
Cygwin Package Information
Package              Version
cygwin-doc           1.7-1
PACKAGE=dash
Cygwin Package Information
Package              Version
dash                 0.5.5.1-2
/usr/bin/ash.exe
/usr/bin/dash.exe
PACKAGE=dejagnu
Cygwin Package Information
Package              Version
dejagnu              20021217-2
/usr/bin/runtest
PACKAGE=diffutils
Cygwin Package Information
Package              Version
diffutils            2.9-1
/usr/bin/cmp.exe
/usr/bin/diff.exe
/usr/bin/diff3.exe
/usr/bin/sdiff.exe
PACKAGE=docbook-dsssl
Cygwin Package Information
Package              Version
docbook-dsssl        1.79-2
/usr/bin/collateindex.pl
/usr/share/sgml/docbook/dsssl-stylesheets/html/dbindex.dsl
/usr/share/sgml/docbook/dsssl-stylesheets/html/dbinfo.dsl
/usr/share/sgml/docbook/dsssl-stylesheets/html/dbinline.dsl
/usr/share/sgml/docbook/dsssl-stylesheets/print/dbindex.dsl
/usr/share/sgml/docbook/dsssl-stylesheets/print/dbinfo.dsl
/usr/share/sgml/docbook/dsssl-stylesheets/print/dbinline.dsl
PACKAGE=docbook-xml412
Cygwin Package Information
Package              Version
docbook-xml412       4.1.2-2
PACKAGE=docbook-xml42
Cygwin Package Information
Package              Version
docbook-xml42        4.2-4
PACKAGE=docbook-xml43
Cygwin Package Information
Package              Version
docbook-xml43        4.3-2
PACKAGE=docbook-xml44
Cygwin Package Information
Package              Version
docbook-xml44        4.4-2
PACKAGE=docbook-xsl
Cygwin Package Information
Package              Version
docbook-xsl          1.75.2-1
PACKAGE=e2fsprogs
Cygwin Package Information
Package              Version
e2fsprogs            1.35-3
/usr/bin/chattr.exe
/usr/bin/compile_et
/usr/bin/lsattr.exe
/usr/bin/mk_cmds
/usr/bin/uuidgen.exe
/usr/sbin/badblocks.exe
/usr/sbin/blkid.exe
/usr/sbin/debugfs.exe
/usr/sbin/dumpe2fs.exe
/usr/sbin/e2fsck
/usr/sbin/e2image.exe
/usr/sbin/e2label.exe
/usr/sbin/filefrag.exe
/usr/sbin/findfs.exe
/usr/sbin/fsck.exe
/usr/sbin/fsck.ext2
/usr/sbin/fsck.ext3
/usr/sbin/logsave.exe
/usr/sbin/mke2fs.exe
/usr/sbin/mkfs.ext2.exe
/usr/sbin/mkfs.ext3.exe
/usr/sbin/mklost+found.exe
/usr/sbin/resize2fs.exe
/usr/sbin/tune2fs.exe
PACKAGE=ed
Cygwin Package Information
Package              Version
ed                   1.0-1
/usr/bin/ed.exe
/usr/bin/red
PACKAGE=editrights
Cygwin Package Information
Package              Version
editrights           1.01-2
/usr/bin/editrights.exe
PACKAGE=enscript
Cygwin Package Information
Package              Version
enscript             1.6.4-2
/usr/bin/diffpp
/usr/bin/enscript.exe
/usr/bin/mkafmmap.exe
/usr/bin/over
/usr/bin/sliceprint
/usr/bin/states.exe
PACKAGE=expat
Cygwin Package Information
Package              Version
expat                2.0.1-1
/usr/bin/xmlwf.exe
PACKAGE=expect
Cygwin Package Information
Package              Version
expect               20030128-1
/usr/bin/expect.exe
PACKAGE=figlet
Cygwin Package Information
Package              Version
figlet               2.2.2-2
/usr/bin/figlet.exe
/usr/bin/chkfont.exe
/usr/bin/showfigfonts
PACKAGE=file
Cygwin Package Information
Package              Version
file                 5.04-1
/usr/bin/cygmagic-1.dll
/usr/bin/file.exe
PACKAGE=findutils
Cygwin Package Information
Package              Version
findutils            4.5.8-1
/usr/bin/find.exe
/usr/bin/locate.exe
/usr/bin/oldfind.exe
/usr/bin/updatedb
/usr/bin/xargs.exe
PACKAGE=flip
Cygwin Package Information
Package              Version
flip                 1.19-1
/usr/bin/flip.exe
PACKAGE=font-adobe-dpi75
Cygwin Package Information
Package              Version
font-adobe-dpi75     1.0.1-1
PACKAGE=font-alias
Cygwin Package Information
Package              Version
font-alias           1.0.2-1
PACKAGE=font-encodings
Cygwin Package Information
Package              Version
font-encodings       1.0.3-1
PACKAGE=font-misc-misc
Cygwin Package Information
Package              Version
font-misc-misc       1.1.0-1
PACKAGE=fontconfig
Cygwin Package Information
Package              Version
fontconfig           2.8.0-1
/usr/bin/fc-cache.exe
/usr/bin/fc-cat.exe
/usr/bin/fc-list.exe
/usr/bin/fc-match.exe
/usr/bin/fc-query.exe
/usr/bin/fc-scan.exe
PACKAGE=fvwm
Cygwin Package Information
Package              Version
fvwm                 2.5.21-1
/usr/bin/fvwm2
/usr/bin/fvwm-config
/usr/bin/fvwm-bug
/usr/bin/fvwm-perllib
/usr/bin/fvwm-convert-2.4
/usr/bin/fvwm-convert-2.6
/usr/bin/fvwm-menu-xlock
/usr/bin/fvwm-menu-directory
/usr/bin/fvwm-menu-desktop
/usr/bin/fvwm-menu-headlines
/usr/bin/xpmroot
/usr/bin/fvwm.exe
/usr/bin/FvwmCommand.exe
/usr/bin/fvwm-root.exe
PACKAGE=gamin
Cygwin Package Information
Package              Version
gamin                0.1.10-10
PACKAGE=gawk
Cygwin Package Information
Package              Version
gawk                 3.1.8-1
/usr/bin/gawk.exe
/usr/bin/pgawk.exe
/usr/bin/gawk-3.1.8.exe
/usr/bin/pgawk-3.1.8.exe
/usr/bin/awk
/usr/bin/igawk
/usr/share/awk/libintl.awk
PACKAGE=gcc
Cygwin Package Information
Package              Version
gcc                  3.4.4-999
PACKAGE=gcc-core
Cygwin Package Information
Package              Version
gcc-core             3.4.4-999
/usr/bin/cc-3.exe
/usr/bin/cpp-3.exe
/usr/bin/gcc-3.exe
/usr/bin/gccbug-3
/usr/bin/gcov-3.exe
/usr/bin/i686-pc-cygwin-gcc-3.4.4.exe
/usr/bin/i686-pc-cygwin-gcc-3.exe
/usr/bin/protoize-3.exe
/usr/bin/unprotoize-3.exe
/usr/share/doc/gcc-3.4.4-999/INSTALL/binaries.html
PACKAGE=gcc-g++
Cygwin Package Information
Package              Version
gcc-g++              3.4.4-999
/usr/bin/c++-3.exe
/usr/bin/g++-3.exe
/usr/bin/i686-pc-cygwin-c++-3.exe
/usr/bin/i686-pc-cygwin-g++-3.exe
/usr/share/doc/gcc-3.4.4-999/libstdc++-v3/html/27_io/binary_iostreams_kanze.txt
/usr/share/doc/gcc-3.4.4-999/libstdc++-v3/html/27_io/binary_iostreams_kuehl.txt
PACKAGE=gcc-mingw-core
Cygwin Package Information
Package              Version
gcc-mingw-core       20050522-1
PACKAGE=gcc-mingw-g++
Cygwin Package Information
Package              Version
gcc-mingw-g++        20050522-1
PACKAGE=gcc4-runtime
Cygwin Package Information
Package              Version
gcc4-runtime         4.3.2-1
/usr/bin/cyggcc_s.dll
PACKAGE=gdb
Cygwin Package Information
Package              Version
gdb                  6.8-2
/usr/bin/gdb.exe
/usr/bin/gdbserver.exe
/usr/bin/gdbtui.exe
/usr/bin/insight.exe
/usr/share/info/gdbint.info
/usr/share/redhat/gui/bindings.tcl
/usr/share/redhat/gui/topbind.tcl
PACKAGE=gettext
Cygwin Package Information
Package              Version
gettext              0.17-11
/usr/bin/gettext.exe
/usr/bin/ngettext.exe
/usr/bin/envsubst.exe
/usr/bin/gettext.sh
/usr/lib/libintl.a
/usr/lib/libintl.dll.a
/usr/lib/libintl.la
/usr/include/libintl.h
/usr/share/man/man3/bind_textdomain_codeset.3.gz
/usr/share/man/man3/bindtextdomain.3.gz
/usr/share/doc/gettext/bind_textdomain_codeset.3.html
/usr/share/doc/gettext/bindtextdomain.3.html
PACKAGE=gettext-devel
Cygwin Package Information
Package              Version
gettext-devel        0.17-11
/usr/bin/msgattrib.exe
/usr/bin/msgcat.exe
/usr/bin/msgcmp.exe
/usr/bin/msgcomm.exe
/usr/bin/msgconv.exe
/usr/bin/msgen.exe
/usr/bin/msgexec.exe
/usr/bin/msgfilter.exe
/usr/bin/msgfmt.exe
/usr/bin/msggrep.exe
/usr/bin/msginit.exe
/usr/bin/msgmerge.exe
/usr/bin/msgunfmt.exe
/usr/bin/msguniq.exe
/usr/bin/xgettext.exe
/usr/bin/recode-sr-latin.exe
/usr/bin/gettextize
/usr/bin/autopoint
/usr/share/gettext/intl/bindtextdom.c
/usr/share/gettext/intl/libintl.rc
PACKAGE=ghostscript
Cygwin Package Information
Package              Version
ghostscript          8.63-2
/usr/bin/bdftops
/usr/bin/dumphint
/usr/bin/dvipdf
/usr/bin/eps2eps
/usr/bin/fixmswrd.pl
/usr/bin/font2c
/usr/bin/gs.exe
/usr/bin/gsbj
/usr/bin/gsdj
/usr/bin/gsdj500
/usr/bin/gslj
/usr/bin/gslp
/usr/bin/gsnd
/usr/bin/lprsetup.sh
/usr/bin/pdf2dsc
/usr/bin/pdf2ps
/usr/bin/pdfopt
/usr/bin/pf2afm
/usr/bin/pfbtopfa
/usr/bin/printafm
/usr/bin/ps2ascii
/usr/bin/ps2epsi
/usr/bin/ps2pdf
/usr/bin/ps2pdf12
/usr/bin/ps2pdf13
/usr/bin/ps2pdf14
/usr/bin/ps2pdfwr
/usr/bin/ps2ps
/usr/bin/ps2ps2
/usr/bin/pv.sh
/usr/bin/unix-lpr.sh
/usr/bin/wftopfa
PACKAGE=ghostscript-fonts-other
Cygwin Package Information
Package                 Version
ghostscript-fonts-other 6.0-1
PACKAGE=ghostscript-fonts-std
Cygwin Package Information
Package               Version
ghostscript-fonts-std 8.11-1
PACKAGE=git
Cygwin Package Information
Package              Version
git                  1.7.0.4-2
/usr/bin/git-cvsserver
/usr/bin/git-receive-pack.exe
/usr/bin/git-shell.exe
/usr/bin/git-upload-archive.exe
/usr/bin/git-upload-pack.exe
/usr/bin/git.exe
PACKAGE=git-gui
Cygwin Package Information
Package              Version
git-gui              1.7.0.4-2
PACKAGE=gitk
Cygwin Package Information
Package              Version
gitk                 1.7.0.4-2
/usr/bin/gitk
PACKAGE=glproto
Cygwin Package Information
Package              Version
glproto              1.4.11-1
PACKAGE=gmp
Cygwin Package Information
Package              Version
gmp                  4.3.1-3
PACKAGE=gnome-common
Cygwin Package Information
Package              Version
gnome-common         2.28.0-1
/usr/bin/gnome-autogen.sh
/usr/bin/gnome-doc-common
PACKAGE=gnome-icon-theme
Cygwin Package Information
Package              Version
gnome-icon-theme     2.28.0-1
/usr/share/icons/gnome/16x16/apps/gnome-settings-keybindings.png
/usr/share/icons/gnome/16x16/apps/key_bindings.png
/usr/share/icons/gnome/16x16/mimetypes/binary.png
/usr/share/icons/gnome/16x16/stock/table/stock_table-combine.png
/usr/share/icons/gnome/22x22/apps/gnome-settings-keybindings.png
/usr/share/icons/gnome/22x22/apps/key_bindings.png
/usr/share/icons/gnome/22x22/mimetypes/binary.png
/usr/share/icons/gnome/24x24/apps/gnome-settings-keybindings.png
/usr/share/icons/gnome/24x24/apps/key_bindings.png
/usr/share/icons/gnome/24x24/mimetypes/binary.png
/usr/share/icons/gnome/24x24/stock/table/stock_table-combine.png
/usr/share/icons/gnome/32x32/apps/gnome-settings-keybindings.png
/usr/share/icons/gnome/32x32/apps/key_bindings.png
/usr/share/icons/gnome/32x32/mimetypes/binary.png
/usr/share/icons/gnome/scalable/apps/gnome-settings-keybindings.svg
/usr/share/icons/gnome/scalable/apps/key_bindings.svg
/usr/share/icons/gnome/scalable/mimetypes/binary.svg
PACKAGE=gnuplot
Cygwin Package Information
Package              Version
gnuplot              4.4.0-1
/usr/bin/gnuplot.exe
/usr/share/doc/gnuplot/demo/binary.dem
/usr/share/doc/gnuplot/demo/binary1
/usr/share/doc/gnuplot/demo/binary2
/usr/share/doc/gnuplot/demo/binary3
/usr/share/doc/gnuplot/demo/lena-keypoints.bin
/usr/share/doc/gnuplot/demo/scatter2.bin
/usr/share/doc/gnuplot/demo/sine.bin
/usr/share/doc/gnuplot/demo/using.bin
PACKAGE=grep
Cygwin Package Information
Package              Version
grep                 2.5.4-2
/usr/bin/egrep.exe
/usr/bin/fgrep.exe
/usr/bin/grep.exe
PACKAGE=groff
Cygwin Package Information
Package              Version
groff                1.20.1-2
/usr/bin/addftinfo.exe
/usr/bin/afmtodit
/usr/bin/chem
/usr/bin/eqn.exe
/usr/bin/eqn2graph
/usr/bin/gdiffmk
/usr/bin/grap2graph
/usr/bin/grn.exe
/usr/bin/grodvi.exe
/usr/bin/groff.exe
/usr/bin/groffer
/usr/bin/grog
/usr/bin/grolbp.exe
/usr/bin/grolj4.exe
/usr/bin/grops.exe
/usr/bin/grotty.exe
/usr/bin/hpftodit.exe
/usr/bin/indxbib.exe
/usr/bin/lkbib.exe
/usr/bin/lookbib.exe
/usr/bin/mmroff
/usr/bin/neqn
/usr/bin/nroff
/usr/bin/pdfroff
/usr/bin/pfbtops.exe
/usr/bin/pic.exe
/usr/bin/pic2graph
/usr/bin/post-grohtml.exe
/usr/bin/pre-grohtml.exe
/usr/bin/preconv.exe
/usr/bin/refer.exe
/usr/bin/roff2dvi
/usr/bin/roff2html
/usr/bin/roff2pdf
/usr/bin/roff2ps
/usr/bin/roff2text
/usr/bin/roff2x
/usr/bin/soelim.exe
/usr/bin/tbl.exe
/usr/bin/tfmtodit.exe
/usr/bin/troff.exe
PACKAGE=gtk-doc
Cygwin Package Information
Package              Version
gtk-doc              1.13-1
/usr/bin/gtkdoc-check
/usr/bin/gtkdoc-depscan
/usr/bin/gtkdoc-fixxref
/usr/bin/gtkdoc-mkdb
/usr/bin/gtkdoc-mkhtml
/usr/bin/gtkdoc-mkman
/usr/bin/gtkdoc-mkpdf
/usr/bin/gtkdoc-mktmpl
/usr/bin/gtkdoc-rebase
/usr/bin/gtkdoc-scan
/usr/bin/gtkdoc-scangobj
/usr/bin/gtkdoc-scanobj
/usr/bin/gtkdocize
PACKAGE=gtypist
Cygwin Package Information
Package              Version
gtypist              2.8.3-1
/usr/bin/gtypist.exe
/usr/bin/typefortune
/usr/share/gtypist/tools/typcombine
PACKAGE=guile
Cygwin Package Information
Package              Version
guile                1.8.2-1
/usr/bin/guile.exe
/usr/bin/guile-snarf
/usr/bin/guile-tools
PACKAGE=gv
Cygwin Package Information
Package              Version
gv                   3.6.5-1
/usr/bin/gv.exe
PACKAGE=gzip
Cygwin Package Information
Package              Version
gzip                 1.3.12-2
/usr/bin/gunzip
/usr/bin/gzexe
/usr/bin/gzip.exe
/usr/bin/uncompress
/usr/bin/zcat
/usr/bin/zcmp
/usr/bin/zdiff
/usr/bin/zegrep
/usr/bin/zfgrep
/usr/bin/zforce
/usr/bin/zgrep
/usr/bin/zless
/usr/bin/zmore
/usr/bin/znew
PACKAGE=hicolor-icon-theme
Cygwin Package Information
Package              Version
hicolor-icon-theme   0.11-1
PACKAGE=inetutils
Cygwin Package Information
Package              Version
inetutils            1.7-1
/usr/bin/ftp.exe
/usr/bin/iu-config
/usr/bin/syslogd-config
/usr/bin/talk.exe
/usr/bin/telnet.exe
/usr/bin/tftp.exe
/usr/sbin/ftpd.exe
/usr/sbin/inetd.exe
/usr/sbin/syslogd.exe
/usr/sbin/talkd.exe
/usr/sbin/telnetd.exe
/usr/sbin/tftpd.exe
/usr/sbin/uucpd.exe
PACKAGE=initscripts
Cygwin Package Information
Package              Version
initscripts          0.9-2
PACKAGE=inputproto
Cygwin Package Information
Package              Version
inputproto           2.0-1
PACKAGE=intltool
Cygwin Package Information
Package              Version
intltool             0.40.6-1
/usr/bin/intltool-extract
/usr/bin/intltool-merge
/usr/bin/intltool-prepare
/usr/bin/intltool-update
/usr/bin/intltoolize
PACKAGE=ipc-utils
Cygwin Package Information
Package              Version
ipc-utils            1.0-1
/usr/bin/ipcrm.exe
/usr/bin/ipcs.exe
PACKAGE=kbproto
Cygwin Package Information
Package              Version
kbproto              1.0.4-1
PACKAGE=less
Cygwin Package Information
Package              Version
less                 436-1
/usr/bin/less.exe
/usr/bin/lessecho.exe
/usr/bin/lesskey.exe
PACKAGE=lighttpd
Cygwin Package Information
Package              Version
lighttpd             1.4.20-1
/usr/bin/cyglightcomp.dll
/usr/bin/spawn-fcgi.exe
/usr/sbin/lighttpd-angel.exe
/usr/sbin/lighttpd.exe
PACKAGE=links
Cygwin Package Information
Package              Version
links                1.00pre20-1
/usr/bin/links.exe
PACKAGE=login
Cygwin Package Information
Package              Version
login                1.10-10
/usr/bin/login.exe
PACKAGE=lua
Cygwin Package Information
Package              Version
lua                  5.1.4-11
/usr/bin/cyglua-5.1.dll
/usr/bin/lua.exe
/usr/bin/luac.exe
PACKAGE=luit
Cygwin Package Information
Package              Version
luit                 1.0.5-1
/usr/bin/luit.exe
PACKAGE=m4
Cygwin Package Information
Package              Version
m4                   1.4.14-1
/usr/bin/m4.exe
PACKAGE=make
Cygwin Package Information
Package              Version
make                 3.81-2
/usr/bin/make.exe
PACKAGE=man
Cygwin Package Information
Package              Version
man                  1.6f-1
/usr/bin/apropos
/usr/bin/man.exe
/usr/bin/man2dvi
/usr/bin/man2html.exe
/usr/bin/manlint
/usr/bin/manpath
/usr/bin/whatis
/usr/sbin/makewhatis
PACKAGE=mc
Cygwin Package Information
Package              Version
mc                   4.6.1-2
/usr/bin/mc.exe
/usr/bin/mcedit.exe
/usr/bin/mcmfmt.exe
/usr/bin/mcview.exe
/usr/share/mc/bin/mc-wrapper.csh
/usr/share/mc/bin/mc-wrapper.sh
/usr/share/mc/bin/mc.csh
/usr/share/mc/bin/mc.sh
PACKAGE=mingw-runtime
Cygwin Package Information
Package              Version
mingw-runtime        3.18-1
/usr/bin/mingwm10.dll
/usr/lib/mingw/binmode.o
PACKAGE=minires
Cygwin Package Information
Package              Version
minires              1.02-1
/usr/bin/cygminires.dll
PACKAGE=mkfontdir
Cygwin Package Information
Package              Version
mkfontdir            1.0.5-1
/usr/bin/mkfontdir
PACKAGE=mkfontscale
Cygwin Package Information
Package              Version
mkfontscale          1.0.7-1
/usr/bin/mkfontscale.exe
PACKAGE=multitail
Cygwin Package Information
Package              Version
multitail            5.2.6-1
/usr/bin/multitail.exe
PACKAGE=mutt
Cygwin Package Information
Package              Version
mutt                 1.4.2.2-2
/usr/bin/flea
/usr/bin/mutt.exe
/usr/bin/muttbug
/usr/bin/pgpring.exe
PACKAGE=ncftp
Cygwin Package Information
Package              Version
ncftp                3.2.1-1
/usr/bin/ncftp.exe
/usr/bin/ncftpbatch.exe
/usr/bin/ncftpbookmarks.exe
/usr/bin/ncftpget.exe
/usr/bin/ncftpls.exe
/usr/bin/ncftpput.exe
/usr/bin/ncftpspooler.exe
PACKAGE=ncurses
Cygwin Package Information
Package              Version
ncurses              5.7-18
/usr/bin/captoinfo
/usr/bin/clear.exe
/usr/bin/infocmp.exe
/usr/bin/infotocap
/usr/bin/reset
/usr/bin/tabs.exe
/usr/bin/tic.exe
/usr/bin/toe.exe
/usr/bin/tput.exe
/usr/bin/tset.exe
PACKAGE=netcat
Cygwin Package Information
Package              Version
netcat               1.10-2
/usr/bin/nc.exe
PACKAGE=Numeric
Cygwin Package Information
Package              Version
Numeric              24.2-1
PACKAGE=octave
Cygwin Package Information
Package              Version
octave               3.2.4-2
/usr/bin/cygcruft.dll
/usr/bin/cygoctave.dll
/usr/bin/cygoctinterp.dll
/usr/bin/octave
/usr/bin/octave-3.2.4.exe
/usr/bin/octave-bug
/usr/bin/octave-bug-3.2.4
/usr/bin/octave-config
/usr/bin/octave-config-3.2.4
/usr/share/octave/3.2.4/m/deprecated/binomial_cdf.m
/usr/share/octave/3.2.4/m/deprecated/binomial_inv.m
/usr/share/octave/3.2.4/m/deprecated/binomial_pdf.m
/usr/share/octave/3.2.4/m/deprecated/binomial_rnd.m
/usr/share/octave/3.2.4/m/deprecated/weibinv.m
/usr/share/octave/3.2.4/m/miscellaneous/bincoeff.m
/usr/share/octave/3.2.4/m/plot/gnuplot_binary.m
/usr/share/octave/3.2.4/m/signal/durbinlevinson.m
/usr/share/octave/3.2.4/m/statistics/distributions/binocdf.m
/usr/share/octave/3.2.4/m/statistics/distributions/binoinv.m
/usr/share/octave/3.2.4/m/statistics/distributions/binopdf.m
/usr/share/octave/3.2.4/m/statistics/distributions/binornd.m
/usr/share/octave/3.2.4/m/statistics/distributions/nbincdf.m
/usr/share/octave/3.2.4/m/statistics/distributions/nbininv.m
/usr/share/octave/3.2.4/m/statistics/distributions/nbinpdf.m
/usr/share/octave/3.2.4/m/statistics/distributions/nbinrnd.m
/usr/share/octave/3.2.4/m/strings/bin2dec.m
/usr/share/octave/3.2.4/m/strings/dec2bin.m
PACKAGE=odt2txt
Cygwin Package Information
Package              Version
odt2txt              0.3+git20070827-1
/usr/bin/odt2txt.exe
PACKAGE=openjade
Cygwin Package Information
Package              Version
openjade             1.4devel1-2
/usr/bin/jade
/usr/bin/openjade.exe
PACKAGE=OpenSP
Cygwin Package Information
Package              Version
OpenSP               1.5.2-2
/usr/bin/nsgmls
/usr/bin/onsgmls.exe
/usr/bin/osgmlnorm.exe
/usr/bin/ospam.exe
/usr/bin/ospcat.exe
/usr/bin/ospent.exe
/usr/bin/osx.exe
/usr/bin/sgml2xml
/usr/bin/sgmlnorm
/usr/bin/spam
/usr/bin/spent
PACKAGE=openssh
Cygwin Package Information
Package              Version
openssh              5.5p1-1
/usr/bin/ssh.exe
/usr/bin/scp.exe
/usr/bin/ssh-add.exe
/usr/bin/ssh-agent.exe
/usr/bin/ssh-keygen.exe
/usr/bin/ssh-keyscan.exe
/usr/bin/sftp.exe
/usr/bin/slogin
/usr/bin/ssh-host-config
/usr/bin/ssh-user-config
/usr/bin/ssh-copy-id
/usr/sbin/sshd.exe
/usr/sbin/ssh-keysign.exe
/usr/sbin/ssh-pkcs11-helper.exe
/usr/sbin/sftp-server.exe
PACKAGE=openssl
Cygwin Package Information
Package              Version
openssl              0.9.8n-1
/usr/bin/cygssl-0.9.8.dll
/usr/bin/openssl.exe
/usr/bin/c_rehash
/usr/bin/cygcrypto-0.9.8.dll
PACKAGE=p7zip
Cygwin Package Information
Package              Version
p7zip                9.04-10
/usr/bin/7z
/usr/bin/7za
/usr/bin/7zr
/usr/bin/p7zip
PACKAGE=par
Cygwin Package Information
Package              Version
par                  1.52-1
/usr/bin/par.exe
PACKAGE=patch
Cygwin Package Information
Package              Version
patch                2.5.8-9
/usr/bin/patch.exe
/usr/bin/patch.exe.manifest
PACKAGE=patchutils
Cygwin Package Information
Package              Version
patchutils           0.3.1-1
/usr/bin/combinediff
/usr/bin/dehtmldiff
/usr/bin/editdiff
/usr/bin/espdiff
/usr/bin/filterdiff.exe
/usr/bin/fixcvsdiff
/usr/bin/flipdiff
/usr/bin/grepdiff
/usr/bin/interdiff.exe
/usr/bin/lsdiff
/usr/bin/recountdiff
/usr/bin/rediff.exe
/usr/bin/splitdiff
/usr/bin/unwrapdiff
/usr/share/man/man1/combinediff.1.gz
PACKAGE=perl
Cygwin Package Information
Package              Version
perl                 5.10.1-3
/usr/bin/a2p.exe
/usr/bin/c2ph
/usr/bin/config_data
/usr/bin/corelist
/usr/bin/cpan
/usr/bin/cpan2dist
/usr/bin/cpaninject
/usr/bin/cpanp
/usr/bin/cpanp-run-perl
/usr/bin/cpansign
/usr/bin/crc32
/usr/bin/cygperl5_10.dll
/usr/bin/dprofpp
/usr/bin/enc2xs
/usr/bin/find2perl
/usr/bin/findrule
/usr/bin/h2ph
/usr/bin/h2xs
/usr/bin/instmodsh
/usr/bin/ipcount
/usr/bin/iptab
/usr/bin/libnetcfg
/usr/bin/lwp-download
/usr/bin/lwp-dump
/usr/bin/lwp-mirror
/usr/bin/lwp-request
/usr/bin/lwp-rget
/usr/bin/perl.exe
/usr/bin/perl5.10.1.exe
/usr/bin/perlbug
/usr/bin/perldoc
/usr/bin/perlivp
/usr/bin/perlrebase
/usr/bin/perlthanks
/usr/bin/piconv
/usr/bin/pl2pm
/usr/bin/pod2html
/usr/bin/pod2latex
/usr/bin/pod2man
/usr/bin/pod2text
/usr/bin/pod2usage
/usr/bin/podchecker
/usr/bin/podselect
/usr/bin/pod_cover
/usr/bin/prove
/usr/bin/psed
/usr/bin/pstruct
/usr/bin/ptar
/usr/bin/ptardiff
/usr/bin/ptee
/usr/bin/s2p
/usr/bin/scandeps
/usr/bin/shasum
/usr/bin/splain
/usr/bin/xsubpp
/usr/lib/perl5/5.10/unicore/CombiningClass.pl
/usr/lib/perl5/5.10/unicore/lib/gc_sc/InCombin.pl
PACKAGE=perl-Error
Cygwin Package Information
Package              Version
perl-Error           0.17016-1
PACKAGE=ping
Cygwin Package Information
Package              Version
ping                 1.0-1
/usr/bin/ping.exe
PACKAGE=pkg-config
Cygwin Package Information
Package              Version
pkg-config           0.23b-10
/usr/bin/pkg-config.exe
PACKAGE=procps
Cygwin Package Information
Package              Version
procps               3.2.7-1
/bin/prockill.exe
/bin/procps.exe
/sbin/sysctl.exe
/usr/bin/free.exe
/usr/bin/pgrep.exe
/usr/bin/pkill.exe
/usr/bin/pmap.exe
/usr/bin/pwdx.exe
/usr/bin/skill.exe
/usr/bin/slabtop.exe
/usr/bin/snice.exe
/usr/bin/tload.exe
/usr/bin/top.exe
/usr/bin/uptime.exe
/usr/bin/vmstat.exe
/usr/bin/w.exe
/usr/bin/watch.exe
PACKAGE=psmisc
Cygwin Package Information
Package              Version
psmisc               21.5-3
/usr/bin/fuser.exe
/usr/bin/killall.exe
/usr/bin/pstree.exe
PACKAGE=psutils
Cygwin Package Information
Package              Version
psutils              1.17-1
/usr/bin/psbook.exe
/usr/bin/psselect.exe
/usr/bin/pstops.exe
/usr/bin/epsffit.exe
/usr/bin/psnup.exe
/usr/bin/psresize.exe
/usr/bin/fixfmps
/usr/bin/fixmacps
/usr/bin/fixpsditps
/usr/bin/fixpspps
/usr/bin/fixtpps
/usr/bin/fixwfwps
/usr/bin/fixwpps
/usr/bin/fixscribeps
/usr/bin/fixwwps
/usr/bin/fixdlsrps
/usr/bin/extractres
/usr/bin/includeres
/usr/bin/psmerge
/usr/bin/getafm
/usr/bin/showchar
PACKAGE=python
Cygwin Package Information
Package              Version
python               2.5.5-1
/usr/bin/libpython2.5.dll
/usr/bin/msgfmt.py
/usr/bin/pydoc
/usr/bin/pygettext.py
/usr/bin/python
/usr/bin/python-config
/usr/bin/python2.5-config
/usr/bin/python2.5.exe
/usr/bin/smtpd.py
/usr/lib/python2.5/binhex.py
/usr/lib/python2.5/binhex.pyc
/usr/lib/python2.5/binhex.pyo
/usr/lib/python2.5/lib-dynload/binascii.dll
PACKAGE=python-cairo
Cygwin Package Information
Package              Version
python-cairo         1.8.6-1
PACKAGE=python-gobject2.0
Cygwin Package Information
Package              Version
python-gobject2.0    2.20.0-1
/usr/bin/cygpyglib-2.0-python2.5-0.dll
PACKAGE=python-gtk2.0
Cygwin Package Information
Package              Version
python-gtk2.0        2.16.0-1
/usr/share/gtk-doc/html/pygtk/class-gtkbin.html
PACKAGE=python-numpy
Cygwin Package Information
Package              Version
python-numpy         1.3.0-1
/usr/bin/f2py
PACKAGE=python-pygtk
Cygwin Package Information
Package              Version
python-pygtk         2.20.0-1
PACKAGE=python-pyrex
Cygwin Package Information
Package              Version
python-pyrex         0.9.9-1
/usr/bin/pyrexc
PACKAGE=rats
Cygwin Package Information
Package              Version
rats                 2.1-1
/usr/bin/rats.exe
PACKAGE=rdtool
Cygwin Package Information
Package              Version
rdtool               0.6.20-1
/usr/bin/rd2
/usr/bin/rdswap
PACKAGE=readline
Cygwin Package Information
Package              Version
readline             6.0.3-2
PACKAGE=rebase
Cygwin Package Information
Package              Version
rebase               3.0.1-1
/usr/bin/peflags.exe
/usr/bin/peflagsall
/usr/bin/rebase.exe
/usr/bin/rebaseall
PACKAGE=renderproto
Cygwin Package Information
Package              Version
renderproto          0.11-1
PACKAGE=rgb
Cygwin Package Information
Package              Version
rgb                  1.0.3-1
/usr/bin/showrgb.exe
PACKAGE=rsync
Cygwin Package Information
Package              Version
rsync                3.0.7-1
/usr/bin/rsync.exe
PACKAGE=ruby
Cygwin Package Information
Package              Version
ruby                 1.8.7-p72-2
/usr/bin/ruby.exe
/usr/bin/rubyw.exe
/usr/bin/cygruby18.dll
/usr/bin/ri
/usr/bin/erb
/usr/bin/irb
/usr/bin/rdoc
/usr/bin/testrb
/usr/lib/ruby/1.8/wsdl/soap/binding.rb
/usr/lib/ruby/1.8/wsdl/binding.rb
/usr/lib/ruby/1.8/tk/bindtag.rb
/usr/share/ri/1.8/system/Method/unbind-i.yaml
/usr/share/ri/1.8/system/StringIO/binmode-i.yaml
/usr/share/ri/1.8/system/String/is_binary_data%3f-i.yaml
/usr/share/ri/1.8/system/Proc/binding-i.yaml
/usr/share/ri/1.8/system/Socket/bind-i.yaml
/usr/share/ri/1.8/system/UnboundMethod/bind-i.yaml
/usr/share/ri/1.8/system/Array/combination-i.yaml
/usr/share/ri/1.8/system/IO/binmode-i.yaml
/usr/share/ri/1.8/system/UDPSocket/bind-i.yaml
/usr/share/ri/1.8/system/Rinda/TupleBag/bin_for_find-i.yaml
/usr/share/ri/1.8/system/Rinda/TupleBag/bin_key-i.yaml
/usr/share/ri/1.8/system/WSDL/SOAP/Operation/parent_binding-i.yaml
/usr/share/ri/1.8/system/WSDL/Definitions/binding-i.yaml
/usr/share/ri/1.8/system/WSDL/Definitions/bindings-i.yaml
/usr/share/ri/1.8/system/WSDL/Definitions/op_bind_rpc%3f-i.yaml
/usr/share/ri/1.8/system/WSDL/Definitions/porttype_binding-i.yaml
/usr/share/ri/1.8/system/WSDL/Port/find_binding-i.yaml
/usr/share/ri/1.8/system/WSDL/PortType/find_binding-i.yaml
/usr/share/ri/1.8/system/Net/FTP/getbinaryfile-i.yaml
/usr/share/ri/1.8/system/Net/FTP/putbinaryfile-i.yaml
/usr/share/ri/1.8/system/Net/FTP/retrbinary-i.yaml
/usr/share/ri/1.8/system/Net/FTP/storbinary-i.yaml
/usr/share/ri/1.8/system/Net/Telnet/binmode-i.yaml
/usr/share/ri/1.8/system/Net/Telnet/binmode%3d-i.yaml
/usr/share/ri/1.8/system/Exception2MessageMapper/bind-i.yaml
/usr/share/ri/1.8/system/Kernel/binding-i.yaml
/usr/share/ri/1.8/system/YAML/BaseEmitter/binary_base64-i.yaml
PACKAGE=run
Cygwin Package Information
Package              Version
run                  1.1.12-11
/usr/bin/run.exe
PACKAGE=rxvt
Cygwin Package Information
Package              Version
rxvt                 20050409-21
/usr/bin/libW11.dll
/usr/bin/rxvt.exe
PACKAGE=screen
Cygwin Package Information
Package              Version
screen               4.0.3-5
/usr/bin/screen.exe
PACKAGE=sed
Cygwin Package Information
Package              Version
sed                  4.2.1-1
/bin/sed.exe
PACKAGE=sgml-common
Cygwin Package Information
Package              Version
sgml-common          0.6.3-3
/usr/bin/install-catalog
/usr/bin/sgmlwhich
PACKAGE=shared-mime-info
Cygwin Package Information
Package              Version
shared-mime-info     0.70-1
/usr/bin/update-mime-database.exe
/usr/bin/update-mime-database.exe.manifest
PACKAGE=sharutils
Cygwin Package Information
Package              Version
sharutils            4.8-1
/usr/bin/compress
/usr/bin/compress-dummy
/usr/bin/mail-files
/usr/bin/mailshar
/usr/bin/remsync
/usr/bin/shar.exe
/usr/bin/unshar.exe
/usr/bin/uudecode.exe
/usr/bin/uuencode.exe
PACKAGE=subversion
Cygwin Package Information
Package              Version
subversion           1.6.11-1
/usr/bin/cygsvn_client-1-0.dll
/usr/bin/cygsvn_delta-1-0.dll
/usr/bin/cygsvn_diff-1-0.dll
/usr/bin/cygsvn_fs-1-0.dll
/usr/bin/cygsvn_fs_base-1-0.dll
/usr/bin/cygsvn_fs_fs-1-0.dll
/usr/bin/cygsvn_fs_util-1-0.dll
/usr/bin/cygsvn_ra-1-0.dll
/usr/bin/cygsvn_ra_local-1-0.dll
/usr/bin/cygsvn_ra_neon-1-0.dll
/usr/bin/cygsvn_ra_serf-1-0.dll
/usr/bin/cygsvn_ra_svn-1-0.dll
/usr/bin/cygsvn_repos-1-0.dll
/usr/bin/cygsvn_subr-1-0.dll
/usr/bin/cygsvn_wc-1-0.dll
/usr/bin/svn.exe
/usr/bin/svnadmin.exe
/usr/bin/svndumpfilter.exe
/usr/bin/svnlook.exe
/usr/bin/svnmucc.exe
/usr/bin/svnserve.exe
/usr/bin/svnsync.exe
/usr/bin/svnversion.exe
PACKAGE=subversion-perl
Cygwin Package Information
Package              Version
subversion-perl      1.6.11-1
/usr/bin/cygsvn_swig_perl-1-0.dll
PACKAGE=subversion-python
Cygwin Package Information
Package              Version
subversion-python    1.6.11-1
/usr/bin/cygsvn_swig_py-1-0.dll
PACKAGE=sysvinit
Cygwin Package Information
Package              Version
sysvinit             2.86-10
/sbin/init.exe
/sbin/killall5.exe
/sbin/runlevel.exe
/sbin/telinit
/usr/bin/init-config
/usr/bin/last.exe
/usr/bin/lastb
/usr/bin/mesg.exe
/usr/bin/mountpoint.exe
/usr/bin/pidof
/usr/bin/utmpdump.exe
/usr/bin/wall.exe
PACKAGE=tar
Cygwin Package Information
Package              Version
tar                  1.22.90-1
/usr/bin/tar.exe
/usr/sbin/backup
/usr/sbin/restore
PACKAGE=tcltk
Cygwin Package Information
Package              Version
tcltk                20080420-1
/usr/bin/tcl84.dll
/usr/bin/tclpip84.dll
/usr/bin/tclsh.exe
/usr/bin/tclsh84.exe
/usr/bin/tk84.dll
/usr/bin/wish.exe
/usr/bin/wish84.exe
/usr/share/tk8.4/demos/bind.tcl
PACKAGE=tcsh
Cygwin Package Information
Package              Version
tcsh                 6.17.00.1-1
/bin/tcsh.exe
/etc/defaults/etc/profile.d/bindkey.tcsh
PACKAGE=ted
Cygwin Package Information
Package              Version
ted                  2.17-1
/usr/bin/Ted.exe
PACKAGE=termcap
Cygwin Package Information
Package              Version
termcap              5.7_20091114-14
PACKAGE=terminfo
Cygwin Package Information
Package              Version
terminfo             5.7_20091114-14
PACKAGE=terminfo0
Cygwin Package Information
Package              Version
terminfo0            5.5_20061104-12
PACKAGE=tetex
Cygwin Package Information
Package              Version
tetex                3.0.0-3
PACKAGE=tetex-base
Cygwin Package Information
Package              Version
tetex-base           3.0.0-3
PACKAGE=tetex-bin
Cygwin Package Information
Package              Version
tetex-bin            3.0.0-3
/usr/bin/a2ping
/usr/bin/afm2tfm.exe
/usr/bin/aleph.exe
/usr/bin/allcm
/usr/bin/allec
/usr/bin/allneeded
/usr/bin/bibtex.exe
/usr/bin/ctangle.exe
/usr/bin/ctie.exe
/usr/bin/cweave.exe
/usr/bin/dmp.exe
/usr/bin/dvi2fax
/usr/bin/dvicopy.exe
/usr/bin/dvigif.exe
/usr/bin/dvihp
/usr/bin/dvilj2p.exe
/usr/bin/dvilj4.exe
/usr/bin/dvilj4l.exe
/usr/bin/dvilj6.exe
/usr/bin/dvilj.exe
/usr/bin/dvipdfm.exe
/usr/bin/dvipdft
/usr/bin/dvipng.exe
/usr/bin/dvips.exe
/usr/bin/dvired
/usr/bin/dvitomp.exe
/usr/bin/dvitype.exe
/usr/bin/e2pall
/usr/bin/ebb.exe
/usr/bin/epstopdf
/usr/bin/etex.exe
/usr/bin/fdf2tan
/usr/bin/fdf2tex
/usr/bin/fmtutil
/usr/bin/fmtutil-sys
/usr/bin/fontinst
/usr/bin/gftodvi.exe
/usr/bin/gftopk.exe
/usr/bin/gftype.exe
/usr/bin/gsftopk.exe
/usr/bin/kpseaccess.exe
/usr/bin/kpsepath
/usr/bin/kpsereadlink.exe
/usr/bin/kpsestat.exe
/usr/bin/kpsetool
/usr/bin/kpsewhere
/usr/bin/kpsewhich.exe
/usr/bin/kpsexpand
/usr/bin/latex.exe
/usr/bin/mag.exe
/usr/bin/makeindex.exe
/usr/bin/makempx
/usr/bin/makempy
/usr/bin/mf.exe
/usr/bin/mf-nowin.exe
/usr/bin/mft.exe
/usr/bin/mkindex
/usr/bin/mkocp
/usr/bin/mkofm
/usr/bin/mktexfmt
/usr/bin/mktexlsr
/usr/bin/mktexmf
/usr/bin/mktexpk
/usr/bin/mktextfm
/usr/bin/mpost.exe
/usr/bin/mpto.exe
/usr/bin/mptopdf
/usr/bin/newer.exe
/usr/bin/odvicopy.exe
/usr/bin/odvips.exe
/usr/bin/odvitype.exe
/usr/bin/omega.exe
/usr/bin/omfonts.exe
/usr/bin/otangle.exe
/usr/bin/otp2ocp.exe
/usr/bin/outocp.exe
/usr/bin/patgen.exe
/usr/bin/pdfcrop
/usr/bin/pdfetex.exe
/usr/bin/pdftex.exe
/usr/bin/pdfxtex.exe
/usr/bin/pfb2pfa.exe
/usr/bin/pk2bm.exe
/usr/bin/pktogf.exe
/usr/bin/pktype.exe
/usr/bin/pltotf.exe
/usr/bin/pooltype.exe
/usr/bin/ps2frag
/usr/bin/ps2pk.exe
/usr/bin/ps4pdf
/usr/bin/pslatex
/usr/bin/rubibtex
/usr/bin/rumakeindex
/usr/bin/tangle.exe
/usr/bin/tcdialog.exe
/usr/bin/texconfig
/usr/bin/texconfig-dialog
/usr/bin/texconfig-sys
/usr/bin/texdoc
/usr/bin/texdoctk
/usr/bin/tex.exe
/usr/bin/texexec
/usr/bin/texfind
/usr/bin/texfont
/usr/bin/texhash
/usr/bin/texlinks
/usr/bin/texshow
/usr/bin/texutil
/usr/bin/tftopl.exe
/usr/bin/thumbpdf
/usr/bin/tie.exe
/usr/bin/ttf2afm.exe
/usr/bin/uniqleaf
/usr/bin/updmap
/usr/bin/updmap-sys
/usr/bin/vftovp.exe
/usr/bin/vptovf.exe
/usr/bin/weave.exe
/usr/share/doc/Cygwin/tetex-bin-3.0.0-3.README
/usr/share/doc/tetex-bin-3.0.0-3/changelog.Cygwin
/usr/share/doc/tetex-bin-3.0.0-3/README.Cygwin
PACKAGE=tetex-extra
Cygwin Package Information
Package              Version
tetex-extra          3.0.0-3
/usr/share/texmf/omega/ocp/otibet/tibinunicode.ocp
/usr/share/texmf/omega/ocp/otibet/tibinwylie.ocp
/usr/share/texmf/omega/otp/otibet/tibinunicode.otp
/usr/share/texmf/omega/otp/otibet/tibinwylie.otp
/usr/share/texmf/tex/latex/SIunits/binary.sty
/usr/share/texmf/tex/latex/tocbibind/tocbibind.sty
PACKAGE=tetex-tiny
Cygwin Package Information
Package              Version
tetex-tiny           3.0.0-3
PACKAGE=tetex-x11
Cygwin Package Information
Package              Version
tetex-x11            3.0.0-3
/usr/X11R6/bin/mf.exe
/usr/X11R6/bin/mfw.exe
/usr/X11R6/bin/oxdvi
/usr/X11R6/bin/xdvi
/usr/X11R6/bin/xdvi-xaw.bin.exe
/usr/X11R6/bin/xdvizilla
PACKAGE=texi2html
Cygwin Package Information
Package              Version
texi2html            1.82-10
/usr/bin/texi2html
PACKAGE=texinfo
Cygwin Package Information
Package              Version
texinfo              4.13-3
/usr/bin/info.exe
/usr/bin/infokey.exe
/usr/bin/install-info.exe
/usr/bin/install-info.exe.manifest
/usr/bin/makeinfo.exe
/usr/bin/pdftexi2dvi
/usr/bin/texi2dvi
/usr/bin/texi2pdf
/usr/bin/texindex.exe
PACKAGE=tidy
Cygwin Package Information
Package              Version
tidy                 041206-1
/usr/bin/cygtidy-0-99-0.dll
/usr/bin/tab2space.exe
/usr/bin/tidy.exe
PACKAGE=time
Cygwin Package Information
Package              Version
time                 1.7-2
/usr/bin/time.exe
PACKAGE=tzcode
Cygwin Package Information
Package              Version
tzcode               2010j-1
/usr/sbin/tzselect
/usr/sbin/zdump.exe
/usr/sbin/zic.exe
/usr/share/zoneinfo/Asia/Harbin
/usr/share/zoneinfo/posix/Asia/Harbin
/usr/share/zoneinfo/right/Asia/Harbin
PACKAGE=untex
Cygwin Package Information
Package              Version
untex                9210-1
/usr/bin/untex.exe
PACKAGE=unzip
Cygwin Package Information
Package              Version
unzip                6.0-10
/usr/bin/funzip.exe
/usr/bin/unzip.exe
/usr/bin/unzipsfx.exe
/usr/bin/zipgrep
/usr/bin/zipinfo.exe
PACKAGE=util-linux
Cygwin Package Information
Package              Version
util-linux           2.14.1-1
/usr/bin/cal.exe
/usr/bin/chkdupexe
/usr/bin/col.exe
/usr/bin/colcrt.exe
/usr/bin/colrm.exe
/usr/bin/column.exe
/usr/bin/ddate.exe
/usr/bin/flock.exe
/usr/bin/getopt.exe
/usr/bin/hexdump.exe
/usr/bin/isosize.exe
/usr/bin/line.exe
/usr/bin/logger.exe
/usr/bin/look.exe
/usr/bin/mcookie.exe
/usr/bin/more.exe
/usr/bin/namei.exe
/usr/bin/pg.exe
/usr/bin/rename.exe
/usr/bin/renice.exe
/usr/bin/rev.exe
/usr/bin/script.exe
/usr/bin/scriptreplay.exe
/usr/bin/setsid.exe
/usr/bin/tailf.exe
/usr/bin/ul.exe
/usr/bin/wall.exe
/usr/bin/whereis.exe
/usr/sbin/agetty.exe
/usr/sbin/blockdev.exe
/usr/sbin/cfdisk.exe
/usr/sbin/fdisk.exe
/usr/sbin/fsck.cramfs.exe
/usr/sbin/fsck.minix.exe
/usr/sbin/mkfs.bfs.exe
/usr/sbin/mkfs.cramfs.exe
/usr/sbin/mkfs.exe
/usr/sbin/mkfs.minix.exe
/usr/sbin/mkswap.exe
/usr/sbin/sfdisk.exe
PACKAGE=vim
Cygwin Package Information
Package              Version
vim                  7.2.264-2
/usr/bin/vi
/usr/bin/vimtutor
/usr/bin/ex
/usr/bin/xxd.exe
/usr/bin/vim-nox.exe
/usr/share/vim/vim72/syntax/bindzone.vim
PACKAGE=w32api
Cygwin Package Information
Package              Version
w32api               3.14-1
PACKAGE=w3m
Cygwin Package Information
Package              Version
w3m                  0.5.1-2
/usr/bin/w3m.exe
/usr/bin/w3mman
/usr/libexec/w3m/cgi-bin/dirlist.cgi
/usr/libexec/w3m/cgi-bin/multipart.cgi
/usr/libexec/w3m/cgi-bin/w3mbookmark.exe
/usr/libexec/w3m/cgi-bin/w3mhelp.cgi
/usr/libexec/w3m/cgi-bin/w3mhelperpanel.exe
/usr/libexec/w3m/cgi-bin/w3mmail.cgi
/usr/libexec/w3m/cgi-bin/w3mman2html.cgi
PACKAGE=wget
Cygwin Package Information
Package              Version
wget                 1.11.4-4
/usr/bin/wget.exe
PACKAGE=which
Cygwin Package Information
Package              Version
which                2.20-2
/usr/bin/which.exe
PACKAGE=WordNet
Cygwin Package Information
Package              Version
WordNet              3.0-1
/usr/bin/wishwn.exe
/usr/bin/wn.exe
/usr/bin/wnb
/usr/share/man/man3/binsrch.3.gz
PACKAGE=wtf
Cygwin Package Information
Package              Version
wtf                  0.0.4-7
/usr/bin/wtf.exe
/usr/bin/wtfdump.exe
/usr/bin/wtfindex.exe
PACKAGE=X-start-menu-icons
Cygwin Package Information
Package              Version
X-start-menu-icons   1.0.4-1
/usr/X11R6/bin/X-start-menu-icons.sh
PACKAGE=xauth
Cygwin Package Information
Package              Version
xauth                1.0.4-1
/usr/bin/xauth.exe
PACKAGE=xcursor-themes
Cygwin Package Information
Package              Version
xcursor-themes       1.0.2-1
PACKAGE=xemacs
Cygwin Package Information
Package              Version
xemacs               21.4.22-1
/usr/bin/gnuattach
/usr/bin/gnuclient.exe
/usr/bin/gnudoit
/usr/bin/ootags.exe
/usr/bin/winclient.exe
/usr/bin/xemacs-21.4.22-498097a3.dmp
/usr/bin/xemacs-21.4.22.exe
/usr/bin/xemacs
PACKAGE=xemacs-emacs-common
Cygwin Package Information
Package              Version
xemacs-emacs-common  21.4.22-1
/usr/bin/b2m.exe
/usr/bin/rcs-checkin
PACKAGE=xextproto
Cygwin Package Information
Package              Version
xextproto            7.1.1-1
PACKAGE=xinetd
Cygwin Package Information
Package              Version
xinetd               2.3.14-1
/usr/bin/xinetd-config
/usr/sbin/itox.exe
/usr/sbin/xconv.pl
/usr/sbin/xinetd.exe
PACKAGE=xinit
Cygwin Package Information
Package              Version
xinit                1.2.1-1
/usr/bin/startx
/usr/bin/startxdmcp.bat
/usr/bin/startxwin.exe
/usr/bin/xinit.exe
PACKAGE=xkbcomp
Cygwin Package Information
Package              Version
xkbcomp              1.1.1-1
/usr/bin/xkbcomp.exe
PACKAGE=xkeyboard-config
Cygwin Package Information
Package              Version
xkeyboard-config     1.8-1
PACKAGE=xkill
Cygwin Package Information
Package              Version
xkill                1.0.2-1
/usr/bin/xkill.exe
PACKAGE=xmlto
Cygwin Package Information
Package              Version
xmlto                0.0.18-2
/usr/bin/xmlto
/usr/bin/xmlif.exe
PACKAGE=xmodmap
Cygwin Package Information
Package              Version
xmodmap              1.0.4-1
/usr/bin/xmodmap.exe
PACKAGE=xmore
Cygwin Package Information
Package              Version
xmore                1.0.1-2
/usr/bin/xmore.exe
PACKAGE=xorg-server
Cygwin Package Information
Package              Version
xorg-server          1.8.0-1
/usr/bin/X
/usr/bin/Xephyr.exe
/usr/bin/Xfake.exe
/usr/bin/Xnest.exe
/usr/bin/Xvfb.exe
/usr/bin/XWin.exe
PACKAGE=xorg-x11-base
Cygwin Package Information
Package              Version
xorg-x11-base        7.4-1
PACKAGE=xproto
Cygwin Package Information
Package              Version
xproto               7.0.16-1
PACKAGE=xrdb
Cygwin Package Information
Package              Version
xrdb                 1.0.6-1
/usr/bin/xrdb.exe
PACKAGE=xsm
Cygwin Package Information
Package              Version
xsm                  1.0.1-2
/usr/bin/xsm.exe
PACKAGE=xterm
Cygwin Package Information
Package              Version
xterm                255-1
/usr/bin/koi8rxterm
/usr/bin/resize.exe
/usr/bin/uxterm
/usr/bin/xterm.exe
PACKAGE=xz
Cygwin Package Information
Package              Version
xz                   4.999.9beta-11
/usr/bin/lzcat
/usr/bin/lzcmp
/usr/bin/lzdiff
/usr/bin/lzegrep
/usr/bin/lzfgrep
/usr/bin/lzgrep
/usr/bin/lzless
/usr/bin/lzma
/usr/bin/lzmadec.exe
/usr/bin/lzmainfo.exe
/usr/bin/lzmore
/usr/bin/unlzma
/usr/bin/unxz
/usr/bin/xz.exe
/usr/bin/xzcat
/usr/bin/xzcmp
/usr/bin/xzdec.exe
/usr/bin/xzdiff
/usr/bin/xzegrep
/usr/bin/xzfgrep
/usr/bin/xzgrep
/usr/bin/xzless
/usr/bin/xzmore
PACKAGE=zip
Cygwin Package Information
Package              Version
zip                  3.0-11
/usr/bin/zip.exe
/usr/bin/zipcloak.exe
/usr/bin/zipnote.exe
/usr/bin/zipsplit.exe
PACKAGE=zlib
Cygwin Package Information
Package              Version
zlib                 1.2.3-10
PACKAGE=zlib-devel
Cygwin Package Information
Package              Version
zlib-devel           1.2.3-10
PACKAGE=zlib0
Cygwin Package Information
Package              Version
zlib0                1.2.3-10
/usr/bin/cygz.dll