-
Notifications
You must be signed in to change notification settings - Fork 46
Installing PDL on Mac OS X
There are two ways of installing PDL on Mac OS X. One, get a pre-built PDL package, or two, custom install PDL.
The pre-built PDL package in existence is called SciPDL. You can download the latest SciPDL build shepherded by Matthew Kenworthy. SciPDL is built against the system version of perl on Mac OS X and is the fastest and easiest way to start with PDL on Mac OS X.
You might want to do a custom installation of PDL because you want to build it to your specifications, you want to build it against the Perl that you installed, and you don't want to monkey with Apple's Perl (which is also usually a version or two behind the latest Perl version). In that case, read on.
Since Mac OS X is really Unix-like, most of the custom Unix installations apply. The following are my experiences on an Intel Macbook running Snow Leopard Mac OS X 10.6.x.
Caveat: It is quite likely that you had Leopard on your computer, and you had already installed Perl or other libraries. Then you upgraded to Snow Leopard. In the process, you went from 32-bit to 64-bit. Now, all your custom compiled code is of the wrong architecture. How do I know? That is exactly what I did. This caused a lot of heartburn. Here is what you can do. First, if you have a custom compiled version of Perl, and you install a new one, the new one will be 64-bit (programs compiled on Snow Leopard are automatically 64-bit unless requested otherwise). Make sure you do a clean install. I actually deleted my old custom Perl and re-installed Perl. I had to reinstall all my modules as well, but it was worth eventually to get everything working.
The very thing I did was to install Perl. I downloaded and installed Perl 5.12.1. Perl installs, tests and builds without a single error on Mac OS X. It is a thing of wonder that it is about as painless as it can be for a software this complicated. When make test ends with the message, "185,000 tests passed. 100% passed" (or something like that), it is a very good feeling.
Just download Perl, untar/ungzip, go into the
src
directory, and type
./configure
make
make test
sudo make install
Perl and its various parts will be installed in
/usr/local/
. From now on, everything you will install will go into
/usr/local/
. Make sure to add
/usr/local/bin
to your shell path, so you can run your own Perl instead of Apple's Perl without having to type a complete path to Perl.
Do yourself a favor. Install cpanminus. Don't even think twice. Just go to Miyagawa's git repository, download the cpanm code, build and install it. You can read the instructions or just do the following
git clone git://github.com/miyagawa/cpanminus.git
cd cpanminus
perl Makefile.PL
make install # or sudo make install if you're non root
From now on, don't even think of using cpan. Just use cpanm. For example, to install a module called Foo::Bar::Baz, just type the following on the command line
$ sudo cpanm Foo::Bar::Baz
and, magically, it will install. You will use cpanm soon.
Now, on to PDL. Ironically, having just installed cpanm, and having been reassured that cpanm is the best way to install a Perl package, we are going to do just the opposite. We are not going to install PDL with cpanm, but are going to work with our hands... no powertools.
Download PDL 2.4.6 source , untar/ungzip it, and open up
perldl.conf
in a text editor. It is a simple text file containing a perl hash. Every key controls a PDL component build. The file is very well documented and very easy to understand.
Note: Feel free to get the latest development version of PDL. I have installed development version 11 and it builds just as easily and well as the stable PDL version. But, for sanity sake, we will focus on version 2.4.6 here.
We will install a couple of preliminary dependencies before moving on to PDL itself.
Read the notes provided by Karl Glazebrook. As he notes in red letters, IMPORTANT: For the Intel Version you MUST also install g77 for this to work.. So, get the right precomipled g77 binary for your architecture from the High Performance Computing for Mac OS X page. Since I am using an Intel machine, I got g77-intel-bin.tar.gz dated October 2006.
Untar/ungzip the binary, double click to run and install it.
Put cpanm to good use. Install ExtUtils::F77 like so
$sudo cpanm ExtUtils::F77
Fetching http://search.cpan.org/CPAN/authors/id/K/KG/KGB/ExtUtils-F77-1.16.tar.gz ... OK
Configuring ExtUtils-F77-1.16 ... OK
Building and testing ExtUtils-F77-1.16 for ExtUtils::F77 ... OK
Successfully installed ExtUtils-F77-1.16
Let's examine each of the keys in
%PDLCONFIG
hash one by one, its settings, what it does, and how to build its dependencies.
The following controls whether or not the HTML docs will be built.
HTML_DOCS => 1,
Setting the above to
undef
or
1
causes the HTML documentation to be built;
0
turns it off. I turned it on, and, on my computer, the HTML documentation was built and stored under
file:///usr/local/lib/perl5/site_perl/5.12.1/darwin-2level/PDL/HtmlDocs/PDL/Index.html
I moved the above to a more easy to access directory so I can now view it in Safari or another browser by just typing
http://localhost/pdldocs
or something simple like that. I suggest you do the same, as you will need to consult the PDL docs a lot.
The following controls the location of directory for temporary files created during the build/test process.
TEMPDIR => undef,
Leave it as 'undef'
Decides if the output of attempts to link various function during
perl Makefile.PL
will be hidden when building PDL
HIDE_TRYLINK => 1,
Leave it set to 1
You can set machine specific optimizations here.
OPTIMIZE => undef, # '-g',
Don't tinker with it unless you know what you are doing (if you know what you are doing then you shouldn't be reading my instructions anyway).
Use posix threading to make use of multiprocessor machines
WITH_POSIX_THREADS => undef,
Leave it as is.
MALLOCDBG => undef,
Leave unchanged.
Do you want routines to handle bad values? I do, so I have set it to 1
WITH_BADVAL => 1,
# If WITH_BADVAL == 1 above, do we use NaN/Inf to represent badvalues
BADVAL_USENAN => 0,
# The original BADVAL implementation assigned bad-values on
# pdl-types. Apparently THIS IS AN EXPERIMENTAL FEATURE -- BEWARE...
BADVAL_PER_PDL => 0,
You can read about bad values in the PDL documentation. I turned on bad value support, and left the other settings to 0.
Try to build Graphics/TriD. I did, and I succeeded. You should also do the same.
WITH_3D => 1,
Build Graphics/TriD using Perl OpenGL (experimental). Again, I did, and it worked.
USE_POGL => undef,
POGL_VERSION => 0.62, # minimum compatible OpenGL version
POGL_WINDOW_TYPE => 'glut', # use GLUT for windows
Use cpanm to install OpenGL. Here is what I did.
$sudo cpanm OpenGL
Fetching http://search.cpan.org/CPAN/authors/id/C/CH/CHM/OpenGL-0.63.tar.gz ... OK
Configuring OpenGL-0.63 ... OK
Building and testing OpenGL-0.63 for OpenGL ... OK
Successfully installed OpenGL-0.63 (upgraded from 0.62)
I didn't mess with any of the settings below. They didn't apply to me, so I left them commented out.
#
# For Mesa 3.2
#
# OPENGL_LIBS => '-L/usr/local/Mesa/lib -lGL -lGLU -lXext -lX11',
#
# Mesa needs -DGL_GLEXT_LEGACY for glPolygonOffsetEXT among others
#
# OPENGL_DEFINE => '-DGL_GLEXT_LEGACY',
# OPENGL_INC => '-I/usr/include/GL/',
#
#
# For SGI GL
#
# OPENGL_LIBS => '-lGL -lGLU -lXext -lX11',
# OPENGL_INC => _,_
# OPENGL_DEFINE => _,_
#
# Let perl try to figure it out
# OPENGL_LIBS => undef,
# OPENGL_INC => undef,
# OPENGL_DEFINE => undef,
Whether or not to build the Karma interface module. It was my karma, so I did.
WITH_KARMA => 1, # Karma interface is deprecated, don't build
WHERE_KARMA => undef, # you may explicitly specify directory location
See the directions for building Karma. To build Karma libraries, I did the following:
$ rsync -a rsync.science-software.net::karma/common/ /usr/local/karma
$ /usr/local/karma/csh_script/install-karma
The above command downloaded the latest source code for Karma and wrote it to
/usr/local/karma
on my computer. Then I ran the
install-karma
script at
/usr/local/karma/csh_script
which installed/upgraded Karma for me. The neat thing is, running
/usr/local/karma/csh_script/install-karma
again upgrades the Karma libraries to the latest version.
Whether or not to build the
PLplot
interface module, as the default settings do not build
PLplot
.
WITH_PLPLOT => 1,
WHERE_PLPLOT_LIBS => '/usr/local/lib/plplot-5.9.6',
WHERE_PLPLOT_INCLUDE => '/usr/local/include/plplot',
First, I built a few dependencies. I wanted Cairo Graphics. But, Cairo/Pixman can also use Poppler to create PDF documents. I wanted that. Poppler depends on xpdf, which in turn depends on Freetype. So, I started with Freetype.
I downoaded the source, untarred/ungzipped it, and ran the following commands
$ ./configure
$ make
$ sudo make install
Everything built without a problem, and I got the following report
----------------------------------------------------------------------
Libraries have been installed in:
/usr/local/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `DYLD_LIBRARY_PATH' environment variable
during execution
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
I also installed the latest versions of libpng (version 1.4.3), libjpeg (version 8b), and fontconfig-2.8.10 for good measure. I am pretty sure Apple provides libpng, but it is a few versions behind. All three of them were as easy as
$ ./configure
$ make
$ sudo make install
Same as above. Download the latest xpdf, untar/ungzip, then
$ ./configure
$ make
$ sudo make install
I downloaded latest Poppler. Then
$ ./configure
$ make
$ sudo make install
Finally, I downloaded the latest sourcecode for both Cairo and Pixman (both are required). First Pixman
./configure
make
sudo make install
Then Cairo
./configure
cairo (version 1.8.10 [release]) will be compiled with:
The following surface backends:
Image: yes (always builtin)
Xlib: yes
Xlib Xrender: yes
Quartz: yes
Quartz-image: no (disabled, use --enable-quartz-image to enable)
XCB: no (disabled, use --enable-xcb to enable)
Win32: no (requires a Win32 platform)
OS2: no (disabled, use --enable-os2 to enable)
PostScript: yes
PDF: yes
SVG: yes
glitz: no (disabled, use --enable-glitz to enable)
BeOS: no (disabled, use --enable-beos to enable)
DirectFB: no (disabled, use --enable-directfb to enable)
The following font backends:
User: yes (always builtin)
FreeType: yes
Win32: no (requires a Win32 platform)
Quartz: yes
The following functions:
PNG functions: yes
And the following internal features:
gcov support: no
test surfaces: no (disabled, use --enable-test-surfaces to enable)
ps testing: yes
pdf testing: no (requires poppler-glib >= 0.9.2)
svg testing: no (requires librsvg-2.0 >= 2.15.0)
make
sudo make install
Now, on to build
PLplot
, I downloaded version 5.9.6, and ran the following command
$ cmake -DPLD_aqt=OFF \
-DENABLE_java=OFF \
-DENABLE_octave=OFF \
-DENABLE_python=OFF \
-DENABLE_tcl=OFF \
-DENABLE_itcl=OFF \
-DENABLE_tk=OFF \
-DENABLE_itk=OFF \
-DENABLE_ada=OFF \
-DENABLE_d=OFF \
-DENABLE_ocaml=OFF \
-DENABLE_qt=OFF \
-DENABLE_pdl=OFF \
-DENABLE_wxwidgets=OFF \
-DPLD_wxwidgets=OFF \
-DWITH_FREETYPE=OFF \
-DPL_FREETYPE_FONT_PATH=/usr/local/share/fonts/default/TrueType \
-DFREETYPE_INCLUDE_DIR=/usr/local/include/freetype2 \
-DFREETYPE_LIBRARY=/usr/local/lib/libfreetype.dylib \
-DPLD_png=ON \
-DPLD_gif=ON \
-DPLD_jpeg=ON \
-DPLD_pngcairo=ON \
-DPLD_svgcairo=ON \
-DHAVE_QHULL=ON \
-DHAVE_AGG=ON \
../plplot-5.9.6
Note, I had to install
cmake
, and since I wanted AGG support, I had to install AGG as well (AGG is Anti-grain Geometry). Leave it off if you don't want it. Note that PLplot libraries are installed in
/usr/local/lib/plplot-5.9.6
and
/usr/local/include/plplot
, hence the settings for PLplot in perldl.conf look like so
WITH_PLPLOT => 1,
WHERE_PLPLOT_LIBS => '/usr/local/lib/plplot-5.9.6',
WHERE_PLPLOT_INCLUDE => '/usr/local/include/plplot',
One additional issue I had was that PLplot kept on finding Apple's older graphics libraries under the X11R6 install directory. This resulted in no png output enabled for PLplot. I couldn't figure a way out, but from a suggestion on the mailing list, I renamed the X11R6 directories temporarily and then built PLplot. That seemed to do the trick, but I am sure there is a better method.
Whether or not to build the
PDL::Slatec
module
WITH_SLATEC => 0,
I turned
SLATEC
off as I wasn't able to make it work.
Whether or not to build the
PDL::Minuit
module:
WITH_MINUIT => 0,
MINUIT_LIB => undef
I set
WITH_MINUIT
to
0
.
WITH_GSL => 0,
GSL_LIBS => undef, # use gsl-config
GSL_INC => undef, # use gsl-config
Even though I was able to install GSL successfully, for some reason I was unable to build
PDL::GSL
.
Whether or not to build the
PDL::FFTW
module
WITH_FFTW => 0,
# Location to search for the FFTW libs
FFTW_LIBS => [ '/lib','/usr/lib','/usr/local/lib'],
# Location to find FFTW includes:
FFTW_INC => ['/usr/include/','/usr/local/include'],
# FFTW Numeric Precision Type to link in: (double or single precision)
FFTW_TYPE => 'double',
Iniitially I tried setting
WITH_FFTW
to
1
. Note that you need FFTW version 2 and ""not"" version 3.x.
Whether or not to build the
PDL::IO::HDF
module:
WITH_HDF => 0,
HDF_LIBS => 0,
HDF_INC => 0,
At some point I would like to experiment with HDF, but for now, I just wanted to move on. So, I turned off
WITH_HDF
.
Whether or not to build the
PDL::IO::GD
module
WITH_GD => undef,
GD_LIBS => undef,
GD_INC => undef,
I left the above to
undef
which caused the
PDL::IO::GD
module to be built. While building PLplot above, we already built a number of dependencies for GD as well. To build GD, I downloaded the latest code for
libgd
(2.0.35 as of this installation), untarred/ungzipped it, went into the source directory built it. Everything worked, and I got the following report:
$ ./configure
** Configuration summary for gd 2.0.35:
Support for PNG library: yes
Support for JPEG library: yes
Support for Freetype 2.x library: yes
Support for Fontconfig library: yes
Support for Xpm library: yes
Support for pthreads: yes
$ make
$ sudo make install
/usr/bin/install -c -m 644 'gd.h' '/usr/local/include/gd.h'
/usr/bin/install -c -m 644 'gdfx.h' '/usr/local/include/gdfx.h'
/usr/bin/install -c -m 644 'gd_io.h' '/usr/local/include/gd_io.h'
/usr/bin/install -c -m 644 'gdcache.h' '/usr/local/include/gdcache.h'
/usr/bin/install -c -m 644 'gdfontg.h' '/usr/local/include/gdfontg.h'
/usr/bin/install -c -m 644 'gdfontl.h' '/usr/local/include/gdfontl.h'
/usr/bin/install -c -m 644 'gdfontmb.h' '/usr/local/include/gdfontmb.h'
/usr/bin/install -c -m 644 'gdfonts.h' '/usr/local/include/gdfonts.h'
/usr/bin/install -c -m 644 'gdfontt.h' '/usr/local/include/gdfontt.h'
/usr/bin/install -c -m 644 'entities.h' '/usr/local/include/entities.h'
Whether or not to build the
PDL::GIS::Proj
module
WITH_PROJ => undef,
PROJ_LIBS => undef,
PROJ_INC => undef,
I wanted
WITH_PROJ
on, so I left the above to
undef
. PDL built against my PROJ library successfully. To build PROJ.4 4.7.0, I downloaded the latest code from the OSGeo web site. Once again, the configure, make, make install dance worked flawlessly.
$ ./configure
$ make
$ sudo make install
Do we build
PDL::IO::Browser
? The
perldl.conf
says that there is some problem building it on OS X... something to do with
curses
WITH_IO_BROWSER => 0,
I left it set to 0.
Quiet
Astro::FITS::Header
warnings for PDL build process by default:
FITS_LEGACY => 1,
It was set to 1, and I left it at 1. I installed
Astro::FITS::CFITSIO
, for which, I had to install
cfitsio
, but, once again, a no hassle installation. First download latest cfitsio, and then
$ ./configure
$ make
$ sudo make install
Funnily, the make install step above did not work for me. So, I manually copied the lib and include files to the correct place like so (Note:
~/src/cfitsio
is the directory with the cfitsio source code that I just configured and on which I ran
make
above.
~/src/cfitsio $ sudo cp lib/*.* /usr/local/lib
~/src/cfitsio $ sudo cp lib/pkgconfig/*.* /usr/local/lib/pkgconfig
~/src/cfitsio $ sudo cp include/*.* /usr/local/include
Then, install
Astro::FITS::CFITSIO
with cpanm
$sudo cpanm Astro::FITS::CFITSIO
Fetching http://search.cpan.org/CPAN/authors/id/P/PR/PRATZLAFF/Astro-FITS-CFITSIO-1.05.tar.gz ... OK
Configuring Astro-FITS-CFITSIO-1.05 ... OK
Building and testing Astro-FITS-CFITSIO-1.05 for Astro::FITS::CFITSIO ... OK
Successfully installed Astro-FITS-CFITSIO-1.05
Should we use the new
Devel::REPL
perldl?
WITH_DEVEL_REPL => 1,
I wanted to try out Chris Marshall's
pdl2>
shell, so I built
Devel::REPL
. It builds successfully, and
PDL
builds fine against it.
$sudo cpanm Devel::REPL
Fetching http://search.cpan.org/CPAN/authors/id/F/FR/FREW/Devel-REPL-1.003011.tar.gz ... OK
Configuring Devel-REPL-1.003011 ... OK
Building and testing Devel-REPL-1.003011 for Devel::REPL ... OK
Successfully installed Devel-REPL-1.003011
That's it for the configuration file. Now, within the PDL source directory, run the following command:
$ perl Makefile.PL
Look at the errors. Most likely there won't be any. If there are, holler on the mailing list, and get help. Otherwise, before going on further you have one little tinkering to do to enable
PLplot
. The
LDDLFLAGS
are still set incorrectly for Mac OS X in the
Graphics/PLplot/Makefile
(note, the
Makefile
was generated by the
perl Makefile.PL
command). Change the following line:
LDDLFLAGS = -shared -L/usr/local/lib -L/usr/local/lib
to
LDDLFLAGS = -bundle -undefined dynamic_lookup -L/usr/local/lib
Save the
Makefile
, then go two levels up to the PDL source directory and run:
$ make
If there are no errors, run the test suite:
$ make test
If that shows "PASS" at the end, you are ready to install PDL with the following command:
$ sudo make install
PDL is now installed! Enjoy.
PDL::IO::Pic is a very useful module that can directly read and write piddles to a variety of image formats with the help of NetPBM available at http://netpbm.sourceforge.net. I didn't know of its existence, until I decided to use it, and then I discovered that I didn't have NetPBM.
Turns out, the stable version of NetPBM (v. 10.35.x) is incompatible with the latest libpng14, which is what I had on my Mac OS X Snow Leopard machine. It either requires an older version of libpng, or, I can try a newer version of NetPBM > 10.48.x. So, I downloaded the "advanced" version (rev 1280) with the following command
~$ cd Projects
~/Projects$ svn checkout http://netpbm.svn.sourceforge.net/svnroot/netpbm/advanced netpbm
Then I built netpbm using its slightly strange build mechanism
~/Projects$ cd netpbm
~/Projects/netpbm$ ./configure
.. answer a bunch of questions ..
~/Projects/netpbm$ make
A couple of hitches along the way. My tiff library was built for 32-bit, so NetPBM croaked. I rebuilt my tiff library so it is now 64-bit.
NetPBM's install system is also rather unique, and, frankly, I had a bit of trouble understanding it. In the end, I did the following --
~/Projects/netpbm$ make package pkgdir=foo
The above command actually built an install package in /foo. Bizarre, but it worked. I guess I could have done
~/Projects/netpbm$ make package pkgdir=~/Projects/netpbm/myinstallpkg
Anyway, then I did the following
~/Projects/netpbm$ sudo ./installnetpbm
that too asked me a few questions, but specifically, I indicated my install directory to be /usr/local. All the bits and bobs of netpbm were installed under /usr/local. I restarted my pdl shell and I was able to do the following
pdl> use PDL::IO::Pic
pdl> $a = ones(5,4)->random
pdl> wpic $a, 'foo.tif'
And, I got a foo.tif image!
The PDL::NetCDF module provides an "interface to NetCDF portable binary gridded files via PDL objects." You have to install PDL::NetCDF separately, however, to make it work, you have to install the netcdf software first. I got the latest netcdf source (version 4.1.1 as of these notes) from http://www.unidata.ucar.edu/downloads/netcdf/netcdf-4_1_1/index.jsp. NetCDF software can work with data in "netcdf 3" format or in "netcdf 4" format. The latter requires a working instance of HDF5, but I could not install HDF5 on my MacBook. Luckily, all the data I am using are in "netcdf 3" format, so I compiled netcdf 4.1.1 with the following command
$ ./configure --prefix=/usr/local/netcdf --disable-f77 --disable-netcdf-4
$ make
$ make check
$ sudo make install
After that, it just a matter of building PDL::NetCDF. A simple perl Makefile.PL
followed by make && sudo make install
did the trick. I now have a working PDL interface to NetCDF.
Note, on reading a NetCDF data file, you don't get a piddle automatically. What you get is a NetCDF object. You have to query that for the appropriate variable (that is because one NetCDF file can have many attributes stored within it). That variable is returned as a piddle that you can then manipulate with the full power of PDL.
SciPDL-2.4.9 for Snow Leopard installs files into the system perl as provided by Apple. Here is a list of the installed files:
/Library/Perl/5.10.0/Astro/FITS/Header/AST.pm
/Library/Perl/5.10.0/Astro/FITS/Header/CFITSIO.pm
/Library/Perl/5.10.0/Astro/FITS/Header/GSD.pm
/Library/Perl/5.10.0/Astro/FITS/Header/Item.pm
/Library/Perl/5.10.0/Astro/FITS/Header/NDF.pm
/Library/Perl/5.10.0/Astro/FITS/Header.pm
/Library/Perl/5.10.0/auto/Inline/_mkdir.al
/Library/Perl/5.10.0/auto/Inline/_rmtree.al
/Library/Perl/5.10.0/auto/Inline/autosplit.ix
/Library/Perl/5.10.0/auto/Inline/check_config_file.al
/Library/Perl/5.10.0/auto/Inline/check_module.al
/Library/Perl/5.10.0/auto/Inline/clean_build.al
/Library/Perl/5.10.0/auto/Inline/create_config_file.al
/Library/Perl/5.10.0/auto/Inline/denter/_print_ref.al
/Library/Perl/5.10.0/auto/Inline/denter/autosplit.ix
/Library/Perl/5.10.0/auto/Inline/denter/indent.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_array.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_data.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_hash.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_name.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_ref.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_scalar.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_undef.al
/Library/Perl/5.10.0/auto/Inline/denter/indent_value.al
/Library/Perl/5.10.0/auto/Inline/denter/M01_invalid_indent_width.al
/Library/Perl/5.10.0/auto/Inline/denter/M02_no_key_end_marker.al
/Library/Perl/5.10.0/auto/Inline/denter/M03_no_value_end_marker.al
/Library/Perl/5.10.0/auto/Inline/denter/M04_mismatched_quotes.al
/Library/Perl/5.10.0/auto/Inline/denter/M05_invalid_key_value.al
/Library/Perl/5.10.0/auto/Inline/denter/M06_invalid_indent_level.al
/Library/Perl/5.10.0/auto/Inline/denter/M07_invalid_scalar_value.al
/Library/Perl/5.10.0/auto/Inline/env_untaint.al
/Library/Perl/5.10.0/auto/Inline/filter.al
/Library/Perl/5.10.0/auto/Inline/find_temp_dir.al
/Library/Perl/5.10.0/auto/Inline/install.al
/Library/Perl/5.10.0/auto/Inline/M01_usage_use.al
/Library/Perl/5.10.0/auto/Inline/M02_usage.al
/Library/Perl/5.10.0/auto/Inline/M03_usage_bind.al
/Library/Perl/5.10.0/auto/Inline/M04_error_nocode.al
/Library/Perl/5.10.0/auto/Inline/M05_error_eval.al
/Library/Perl/5.10.0/auto/Inline/M06_code_file_failed_open.al
/Library/Perl/5.10.0/auto/Inline/M07_code_file_does_not_exist.al
/Library/Perl/5.10.0/auto/Inline/M08_no_DATA_source_code.al
/Library/Perl/5.10.0/auto/Inline/M09_marker_mismatch.al
/Library/Perl/5.10.0/auto/Inline/M10_usage_WITH_USING.al
/Library/Perl/5.10.0/auto/Inline/M11_usage_DIRECTORY.al
/Library/Perl/5.10.0/auto/Inline/M12_usage_NAME.al
/Library/Perl/5.10.0/auto/Inline/M13_usage_VERSION.al
/Library/Perl/5.10.0/auto/Inline/M14_usage_Config.al
/Library/Perl/5.10.0/auto/Inline/M15_usage_install_directory.al
/Library/Perl/5.10.0/auto/Inline/M16_DIRECTORY_mkdir_failed.al
/Library/Perl/5.10.0/auto/Inline/M17_config_open_failed.al
/Library/Perl/5.10.0/auto/Inline/M18_error_old_version.al
/Library/Perl/5.10.0/auto/Inline/M19_usage_language.al
/Library/Perl/5.10.0/auto/Inline/M20_config_creation_failed.al
/Library/Perl/5.10.0/auto/Inline/M21_opendir_failed.al
/Library/Perl/5.10.0/auto/Inline/M22_usage_register.al
/Library/Perl/5.10.0/auto/Inline/M23_usage_alias_used.al
/Library/Perl/5.10.0/auto/Inline/M24_open_for_output_failed.al
/Library/Perl/5.10.0/auto/Inline/M25_no_WITH_support.al
/Library/Perl/5.10.0/auto/Inline/M26_error_version_without_name.al
/Library/Perl/5.10.0/auto/Inline/M27_module_not_indexed.al
/Library/Perl/5.10.0/auto/Inline/M28_error_grokking_path.al
/Library/Perl/5.10.0/auto/Inline/M29_error_relative_path.al
/Library/Perl/5.10.0/auto/Inline/M30_error_no_obj.al
/Library/Perl/5.10.0/auto/Inline/M31_inline_open_failed.al
/Library/Perl/5.10.0/auto/Inline/M32_error_md5_validation.al
/Library/Perl/5.10.0/auto/Inline/M33_error_old_inline_version.al
/Library/Perl/5.10.0/auto/Inline/M34_error_incorrect_version.al
/Library/Perl/5.10.0/auto/Inline/M35_error_no_object_file.al
/Library/Perl/5.10.0/auto/Inline/M36_usage_install_main.al
/Library/Perl/5.10.0/auto/Inline/M37_usage_install_auto.al
/Library/Perl/5.10.0/auto/Inline/M38_usage_install_name.al
/Library/Perl/5.10.0/auto/Inline/M39_usage_install_version.al
/Library/Perl/5.10.0/auto/Inline/M40_usage_install_badname.al
/Library/Perl/5.10.0/auto/Inline/M41_usage_install_version_mismatch.al
/Library/Perl/5.10.0/auto/Inline/M42_usage_loader.al
/Library/Perl/5.10.0/auto/Inline/M43_error_bootstrap.al
/Library/Perl/5.10.0/auto/Inline/M45_usage_with.al
/Library/Perl/5.10.0/auto/Inline/M46_usage_with_bad.al
/Library/Perl/5.10.0/auto/Inline/M47_invalid_config_option.al
/Library/Perl/5.10.0/auto/Inline/M48_usage_shortcuts.al
/Library/Perl/5.10.0/auto/Inline/M49_usage_unsafe.al
/Library/Perl/5.10.0/auto/Inline/M51_unused_DATA.al
/Library/Perl/5.10.0/auto/Inline/M52_invalid_filter.al
/Library/Perl/5.10.0/auto/Inline/M53_mkdir_failed.al
/Library/Perl/5.10.0/auto/Inline/M54_rmdir_failed.al
/Library/Perl/5.10.0/auto/Inline/M55_unlink_failed.al
/Library/Perl/5.10.0/auto/Inline/M56_no_DIRECTORY_found.al
/Library/Perl/5.10.0/auto/Inline/M57_wrong_architecture.al
/Library/Perl/5.10.0/auto/Inline/M58_site_install.al
/Library/Perl/5.10.0/auto/Inline/M59_bad_inline_file.al
/Library/Perl/5.10.0/auto/Inline/M60_no_inline_files.al
/Library/Perl/5.10.0/auto/Inline/M61_not_parsed.al
/Library/Perl/5.10.0/auto/Inline/M62_invalid_config_file.al
/Library/Perl/5.10.0/auto/Inline/M63_no_source.al
/Library/Perl/5.10.0/auto/Inline/M64_install_not_c.al
/Library/Perl/5.10.0/auto/Inline/maker_utils.al
/Library/Perl/5.10.0/auto/Inline/mkpath.al
/Library/Perl/5.10.0/auto/Inline/obj_untaint.al
/Library/Perl/5.10.0/auto/Inline/print_info.al
/Library/Perl/5.10.0/auto/Inline/read_inline_file.al
/Library/Perl/5.10.0/auto/Inline/receive_code.al
/Library/Perl/5.10.0/auto/Inline/reportbug.al
/Library/Perl/5.10.0/auto/Inline/rmpath.al
/Library/Perl/5.10.0/auto/Inline/with_configs.al
/Library/Perl/5.10.0/auto/Inline/write_inl_file.al
/Library/Perl/5.10.0/darwin-thread-multi-2level/Astro/FITS/CFITSIO.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Astro/FITS/CFITSIO/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Astro/FITS/CFITSIO/autosplit.ix
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Astro/FITS/CFITSIO/CFITSIO.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Astro/FITS/CFITSIO/CFITSIO.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Astro/FITS/Header/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/ExtUtils/F77/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Inline/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/OpenGL/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/OpenGL/autosplit.ix
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/OpenGL/OpenGL.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/OpenGL/OpenGL.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Parse/RecDescent/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Bad/Bad.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Bad/Bad.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/CallExt/CallExt.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/CallExt/CallExt.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Complex/Complex.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Complex/Complex.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Compression/Compression.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Compression/Compression.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Core/Core.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Core/Core.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/FFT/FFT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/FFT/FFT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/FFTW/FFTW.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/FFTW/FFTW.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Fit/Gaussian/Gaussian.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Fit/Gaussian/Gaussian.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/IIS/IIS.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/IIS/IIS.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/OpenGLQ/OpenGLQ.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/OpenGLQ/OpenGLQ.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/PGPLOT/Window/Window.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/PGPLOT/Window/Window.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/PLplot/PLplot.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/PLplot/PLplot.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/TriD/Rout/Rout.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Graphics/TriD/Rout/Rout.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/DIFF/DIFF.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/DIFF/DIFF.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/INTEG/INTEG.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/INTEG/INTEG.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/INTERP/INTERP.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/INTERP/INTERP.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/MROOT/MROOT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/MROOT/MROOT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/RNG/RNG.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSL/RNG/RNG.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/AIRY/AIRY.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/AIRY/AIRY.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/BESSEL/BESSEL.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/BESSEL/BESSEL.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/CLAUSEN/CLAUSEN.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/CLAUSEN/CLAUSEN.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/COULOMB/COULOMB.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/COULOMB/COULOMB.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/COUPLING/COUPLING.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/COUPLING/COUPLING.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/DAWSON/DAWSON.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/DAWSON/DAWSON.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/DEBYE/DEBYE.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/DEBYE/DEBYE.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/DILOG/DILOG.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/DILOG/DILOG.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ELEMENTARY/ELEMENTARY.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ELEMENTARY/ELEMENTARY.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ELLINT/ELLINT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ELLINT/ELLINT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ELLJAC/ELLJAC.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ELLJAC/ELLJAC.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ERF/ERF.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ERF/ERF.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/EXP/EXP.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/EXP/EXP.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/EXPINT/EXPINT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/EXPINT/EXPINT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/FERMI_DIRAC/FERMI_DIRAC.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/FERMI_DIRAC/FERMI_DIRAC.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/GAMMA/GAMMA.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/GAMMA/GAMMA.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/GEGENBAUER/GEGENBAUER.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/GEGENBAUER/GEGENBAUER.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/HYPERG/HYPERG.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/HYPERG/HYPERG.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/LAGUERRE/LAGUERRE.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/LAGUERRE/LAGUERRE.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/LEGENDRE/LEGENDRE.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/LEGENDRE/LEGENDRE.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/LOG/LOG.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/LOG/LOG.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/POLY/POLY.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/POLY/POLY.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/POW_INT/POW_INT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/POW_INT/POW_INT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/PSI/PSI.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/PSI/PSI.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/SYNCHROTRON/SYNCHROTRON.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/SYNCHROTRON/SYNCHROTRON.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/TRANSPORT/TRANSPORT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/TRANSPORT/TRANSPORT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/TRIG/TRIG.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/TRIG/TRIG.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ZETA/ZETA.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/GSLSF/ZETA/ZETA.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Image2D/Image2D.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Image2D/Image2D.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/ImageND/ImageND.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/ImageND/ImageND.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/ImageRGB/ImageRGB.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/ImageRGB/ImageRGB.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Browser/Browser.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Browser/Browser.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/GD/GD.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/GD/GD.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Misc/Misc.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Misc/Misc.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Pnm/Pnm.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Pnm/Pnm.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Storable/Storable.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/IO/Storable/Storable.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Math/Math.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Math/Math.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/MatrixOps/MatrixOps.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/MatrixOps/MatrixOps.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Minuit/Minuit.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Minuit/Minuit.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Ops/Ops.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Ops/Ops.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Primitive/Primitive.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Primitive/Primitive.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Slatec/Slatec.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Slatec/Slatec.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Slices/Slices.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Slices/Slices.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Tests/Tests.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Tests/Tests.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Transform/Transform.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Transform/Transform.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Ufunc/Ufunc.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PDL/Ufunc/Ufunc.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PGPLOT/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PGPLOT/PGPLOT.bs
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/PGPLOT/PGPLOT.bundle
/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/Term/ReadLine/.packlist
/Library/Perl/5.10.0/darwin-thread-multi-2level/Inline/MakePdlppInstallable.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/Inline/Pdlpp.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/OpenGL/Config.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/OpenGL.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/OpenGL.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/API.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/AutoLoader.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Bad.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/BadValues.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Basic.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/CallExt.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Char.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Complex.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Compression.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Config.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Constants.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/Dev.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/pdl.h
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/pdlcore.h
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/pdlmagic.h
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/pdlsimple.h
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/pdlthread.h
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/ppport.h
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core/typemap.pdl
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Core.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Course.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Dataflow.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Dbg.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/default.perldlrc
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Delta.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/BAD2_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/BAD_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/Cartography_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/General.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/m51.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/PGPLOT_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/PGPLOT_OO_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/Screen.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/TkTriD_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/Transform_demo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/TriD1.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/TriD2.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Demos/TriDGallery.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/DiskCache.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Doc/Config.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Doc/Perldl.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Doc.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Exporter.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/FAQ.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/FFT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/FFTW.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Filter/Linear.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Filter/LinPred.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Fit/Gaussian.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Fit/Linfit.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Fit/LM.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Fit/Polynomial.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Func.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Gaussian.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/IIS.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/Limits.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/equa.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/expo.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/gamma.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/jigsaw.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/lasritt.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/log.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/neg.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/neglog.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/null.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/ramp.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/ramps/stairs.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/aips0.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/backgr.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/bgyrw.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/blue.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/blulut.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/color.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/green.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/heat.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl11.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl12.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl14.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl15.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl2.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl4.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl5.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/idl6.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/isophot.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/light.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/manycol.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/pastel.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/rainbow.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/rainbow1.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/rainbow2.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/rainbow3.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/rainbow4.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/ramp.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random1.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random2.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random3.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random4.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random5.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/random6.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/real.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/red.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/smooth.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/smooth1.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/smooth2.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/smooth3.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/staircase.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/stairs8.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/stairs9.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT/tables/standard.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/LUT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/OpenGL/Perl/OpenGL.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/OpenGLQ.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/PGPLOT/Window.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/PGPLOT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/PGPLOTOptions.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/PLplot.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/State.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/ArcBall.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/ButtonControl.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Contours.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Control3D.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Cube.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Geomview.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/GL.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/GoBoard.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Graph.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/GraphBox.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Image.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Labels.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Lines.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Logo.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/MathGraph.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Mesh.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Object.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Objects.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/OOGL.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Polygonize.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Pyramid.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Quaternion.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Rout.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/SimpleScaler.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Surface.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/TextObjects.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Tk.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/ViewPort.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/VRML.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD/Window.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/TriD.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/VRML/Protos.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics/VRML.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Graphics2D.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSL/DIFF.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSL/INTEG.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSL/INTERP.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSL/MROOT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSL/RNG.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/AIRY.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/BESSEL.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/CLAUSEN.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/COULOMB.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/COUPLING.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/DAWSON.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/DEBYE.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/DILOG.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/ELEMENTARY.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/ELLINT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/ELLJAC.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/ERF.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/EXP.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/EXPINT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/FERMI_DIRAC.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/GAMMA.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/GEGENBAUER.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/HYPERG.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/LAGUERRE.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/LEGENDRE.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/LOG.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/POLY.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/POW_INT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/PSI.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/SYNCHROTRON.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/TRANSPORT.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/TRIG.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/GSLSF/ZETA.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/API.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/AutoLoader.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Bad.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/BadValues.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Basic.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/CallExt.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Char.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Complex.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Compression.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Constants.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Core/Dev.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Core.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Course.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Dataflow.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Dbg.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Delta.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/DiskCache.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Doc/Perldl.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Doc.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Exporter.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/FAQ.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/FFT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/FFTW.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Filter/Linear.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Filter/LinPred.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Fit/Gaussian.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Fit/Linfit.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Fit/LM.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Fit/Polynomial.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Func.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/IIS.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/Limits.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/LUT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/OpenGL/Perl/OpenGL.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/OpenGLQ.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/PGPLOT/Window.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/PGPLOT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/PGPLOTOptions.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/PLplot.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/State.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/ButtonControl.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/Contours.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/Labels.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/MathGraph.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/Objects.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/Rout.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD/VRML.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics/TriD.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Graphics2D.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSL/DIFF.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSL/INTEG.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSL/INTERP.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSL/MROOT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSL/RNG.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/AIRY.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/BESSEL.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/CLAUSEN.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/COULOMB.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/COUPLING.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/DAWSON.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/DEBYE.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/DILOG.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/ELEMENTARY.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/ELLINT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/ELLJAC.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/ERF.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/EXP.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/EXPINT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/FERMI_DIRAC.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/GAMMA.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/GEGENBAUER.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/HYPERG.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/LAGUERRE.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/LEGENDRE.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/LOG.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/POLY.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/POW_INT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/PSI.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/SYNCHROTRON.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/TRANSPORT.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/TRIG.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/GSLSF/ZETA.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Image2D.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/ImageND.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/ImageRGB.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Index.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Indexing.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Internals.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/Dicom.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/Dumper.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/FastRaw.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/FITS.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/FlexRaw.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/GD.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/Misc.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/NDF.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/Pic.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/Pnm.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO/Storable.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/IO.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Lite.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/LiteF.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Lvalue.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Math.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/MATLAB.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Matrix.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/MatrixOps.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Minuit.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Modules.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/NiceSlice.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Objects.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Ops.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Opt/Simplex.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Options.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/PDL.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/pdldoc.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/perldl.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Perldl2/Plugin/NiceSlice.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Perldl2/Plugin/PDLCommands.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Perldl2/Plugin/PrintControl.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Perldl2/Profile/Perldl2.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Philosophy.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Pod/Parser.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Pod/Select.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Pod/Usage.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/pod2htmd.tmp
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/pod2htmi.tmp
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/PP-Inline.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/PP.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/pptemplate.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Primitive.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/QuickStart.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Reduce.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Scilab.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Slatec.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Slices.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Tests.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Threading.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Tips.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Transform/Cartography.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Transform.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Tutorials.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Types.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/HtmlDocs/PDL/Ufunc.html
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Image2D.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/ImageND.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/ImageRGB.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Impatient.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Index.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Indexing.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Internals.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Intro.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Browser.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Dicom.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Dumper.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/FastRaw.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/FITS.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/FlexRaw.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/GD.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Misc.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/NDF.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Pic.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Pnm.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO/Storable.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/IO.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Lite.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/LiteF.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Lvalue.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Math.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/MATLAB.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Matrix.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/MatrixOps.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Minuit.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Modules.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/NiceSlice.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Objects.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Ops.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Opt/Simplex.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Options.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/pdldoc.db
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/pdldoc.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/perldl.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Perldl2/Plugin/NiceSlice.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Perldl2/Plugin/PDLCommands.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Perldl2/Plugin/PrintControl.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Perldl2/Profile/Perldl2.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Perldl2/Script.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Philosophy.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Pod/Parser.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Pod/Select.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Pod/Usage.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/CType.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/Dims.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/Dump.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/PDLCode.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/PdlParObj.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/Signature.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/Struct.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/SymTab.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/Var.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP/XS.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP-Inline.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/PP.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/pptemplate.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Primitive.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/QuickStart.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Reduce.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Scilab.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Slatec.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Slices.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Tests.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Threading.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Tips.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Transform/Cartography/earth_coast.vec.fits
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Transform/Cartography/earth_day.jpg
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Transform/Cartography/earth_night.jpg
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Transform/Cartography.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Transform.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Tutorials.pod
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Types.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Ufunc.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL/Version.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PDL.pm
/Library/Perl/5.10.0/darwin-thread-multi-2level/PGPLOT.pm
/Library/Perl/5.10.0/ExtUtils/F77.pm
/Library/Perl/5.10.0/Inline/C/ParseRecDescent.pm
/Library/Perl/5.10.0/Inline/C/ParseRegExp.pm
/Library/Perl/5.10.0/Inline/C-Cookbook.pod
/Library/Perl/5.10.0/Inline/C.pm
/Library/Perl/5.10.0/Inline/C.pod
/Library/Perl/5.10.0/Inline/denter.pm
/Library/Perl/5.10.0/Inline/Foo.pm
/Library/Perl/5.10.0/Inline/MakeMaker/Changes
/Library/Perl/5.10.0/Inline/MakeMaker.pm
/Library/Perl/5.10.0/Inline-API.pod
/Library/Perl/5.10.0/Inline-FAQ.pod
/Library/Perl/5.10.0/Inline-Support.pod
/Library/Perl/5.10.0/Inline.pm
/Library/Perl/5.10.0/Inline.pod
/Library/Perl/5.10.0/Parse/RecDescent.pm
/Library/Perl/5.10.0/Term/ReadLine/Perl.pm
/Library/Perl/5.10.0/Term/ReadLine/readline.pm
/usr/local/bin/pdl
/usr/local/bin/pdl2
/usr/local/bin/pdldoc
/usr/local/bin/perldl
/usr/local/bin/pptemplate
/usr/local/include/drvrsmem.h
/usr/local/include/fitsio.h
/usr/local/include/fitsio2.h
/usr/local/include/longnam.h
/usr/local/lib/libcfitsio.a
/usr/local/pgplot/cpgdemo
/usr/local/pgplot/cpgplot.h
/usr/local/pgplot/drivers.list
/usr/local/pgplot/grexec.f
/usr/local/pgplot/grfont.dat
/usr/local/pgplot/grpckg1.inc
/usr/local/pgplot/libcpgplot.a
/usr/local/pgplot/libpgplot.a
/usr/local/pgplot/makefile
/usr/local/pgplot/pgdemo1
/usr/local/pgplot/pgdemo10
/usr/local/pgplot/pgdemo11
/usr/local/pgplot/pgdemo12
/usr/local/pgplot/pgdemo13
/usr/local/pgplot/pgdemo14
/usr/local/pgplot/pgdemo15
/usr/local/pgplot/pgdemo16
/usr/local/pgplot/pgdemo17
/usr/local/pgplot/pgdemo2
/usr/local/pgplot/pgdemo3
/usr/local/pgplot/pgdemo4
/usr/local/pgplot/pgdemo5
/usr/local/pgplot/pgdemo6
/usr/local/pgplot/pgdemo7
/usr/local/pgplot/pgdemo8
/usr/local/pgplot/pgdemo9
/usr/local/pgplot/pgplot.inc
/usr/local/pgplot/pgxwin_server
/usr/local/pgplot/rgb.txt
/usr/local/share/man/man1/pdl.1
/usr/local/share/man/man1/PDL::API.1
/usr/local/share/man/man1/PDL::BadValues.1
/usr/local/share/man/man1/PDL::Course.1
/usr/local/share/man/man1/PDL::Dataflow.1
/usr/local/share/man/man1/PDL::Delta.1
/usr/local/share/man/man1/PDL::FAQ.1
/usr/local/share/man/man1/PDL::Impatient.1
/usr/local/share/man/man1/PDL::Indexing.1
/usr/local/share/man/man1/PDL::Internals.1
/usr/local/share/man/man1/PDL::MATLAB.1
/usr/local/share/man/man1/PDL::Modules.1
/usr/local/share/man/man1/PDL::Objects.1
/usr/local/share/man/man1/PDL::Philosophy.1
/usr/local/share/man/man1/PDL::PP-Inline.1
/usr/local/share/man/man1/PDL::PP.1
/usr/local/share/man/man1/PDL::QuickStart.1
/usr/local/share/man/man1/PDL::Scilab.1
/usr/local/share/man/man1/PDL::Threading.1
/usr/local/share/man/man1/PDL::Tips.1
/usr/local/share/man/man1/PDL::Tutorials.1
/usr/local/share/man/man1/pdl2.1
/usr/local/share/man/man1/pdldoc.1
/usr/local/share/man/man1/perldl.1
/usr/local/share/man/man1/pptemplate.1
/usr/local/share/man/man3/Astro::FITS::CFITSIO.3pm
/usr/local/share/man/man3/Astro::FITS::Header.3pm
/usr/local/share/man/man3/Astro::FITS::Header::AST.3pm
/usr/local/share/man/man3/Astro::FITS::Header::CFITSIO.3pm
/usr/local/share/man/man3/Astro::FITS::Header::GSD.3pm
/usr/local/share/man/man3/Astro::FITS::Header::Item.3pm
/usr/local/share/man/man3/Astro::FITS::Header::NDF.3pm
/usr/local/share/man/man3/ExtUtils::F77.3pm
/usr/local/share/man/man3/Inline-API.3pm
/usr/local/share/man/man3/Inline-FAQ.3pm
/usr/local/share/man/man3/Inline-Support.3pm
/usr/local/share/man/man3/Inline.3pm
/usr/local/share/man/man3/Inline::C-Cookbook.3pm
/usr/local/share/man/man3/Inline::C.3pm
/usr/local/share/man/man3/Inline::C::ParseRecDescent.3pm
/usr/local/share/man/man3/Inline::C::ParseRegExp.3pm
/usr/local/share/man/man3/OpenGL.3pm
/usr/local/share/man/man3/Parse::RecDescent.3pm
/usr/local/share/man/man3/PDL.3pm
/usr/local/share/man/man3/PDL::AutoLoader.3pm
/usr/local/share/man/man3/PDL::Bad.3pm
/usr/local/share/man/man3/PDL::BAD2_demo.3pm
/usr/local/share/man/man3/PDL::BAD_demo.3pm
/usr/local/share/man/man3/PDL::Basic.3pm
/usr/local/share/man/man3/PDL::CallExt.3pm
/usr/local/share/man/man3/PDL::Char.3pm
/usr/local/share/man/man3/PDL::Complex.3pm
/usr/local/share/man/man3/PDL::Compression.3pm
/usr/local/share/man/man3/PDL::Config.3pm
/usr/local/share/man/man3/PDL::Constants.3pm
/usr/local/share/man/man3/PDL::Core.3pm
/usr/local/share/man/man3/PDL::Dbg.3pm
/usr/local/share/man/man3/PDL::Dev.3pm
/usr/local/share/man/man3/PDL::DiskCache.3pm
/usr/local/share/man/man3/PDL::Doc.3pm
/usr/local/share/man/man3/PDL::Doc::Config.3pm
/usr/local/share/man/man3/PDL::Doc::Perldl.3pm
/usr/local/share/man/man3/PDL::Dumper.3pm
/usr/local/share/man/man3/PDL::Exporter.3pm
/usr/local/share/man/man3/PDL::FFT.3pm
/usr/local/share/man/man3/PDL::FFTW.3pm
/usr/local/share/man/man3/PDL::Fit::Gaussian.3pm
/usr/local/share/man/man3/PDL::Func.3pm
/usr/local/share/man/man3/PDL::Gaussian.3pm
/usr/local/share/man/man3/PDL::Graphics::IIS.3pm
/usr/local/share/man/man3/PDL::Graphics::Limits.3pm
/usr/local/share/man/man3/PDL::Graphics::LUT.3pm
/usr/local/share/man/man3/PDL::Graphics::OpenGL::Perl::OpenGL.3pm
/usr/local/share/man/man3/PDL::Graphics::OpenGLQ.3pm
/usr/local/share/man/man3/PDL::Graphics::PGPLOT.3pm
/usr/local/share/man/man3/PDL::Graphics::PGPLOT::Window.3pm
/usr/local/share/man/man3/PDL::Graphics::PGPLOTOptions.3pm
/usr/local/share/man/man3/PDL::Graphics::PLplot.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::ButtonControl.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::Contours.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::Labels.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::MathGraph.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::Objects.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::Rout.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::Tk.3pm
/usr/local/share/man/man3/PDL::Graphics::TriD::VRML.3pm
/usr/local/share/man/man3/PDL::Graphics2D.3pm
/usr/local/share/man/man3/PDL::GSL::DIFF.3pm
/usr/local/share/man/man3/PDL::GSL::INTEG.3pm
/usr/local/share/man/man3/PDL::GSL::INTERP.3pm
/usr/local/share/man/man3/PDL::GSL::MROOT.3pm
/usr/local/share/man/man3/PDL::GSL::RNG.3pm
/usr/local/share/man/man3/PDL::GSLSF::AIRY.3pm
/usr/local/share/man/man3/PDL::GSLSF::BESSEL.3pm
/usr/local/share/man/man3/PDL::GSLSF::CLAUSEN.3pm
/usr/local/share/man/man3/PDL::GSLSF::COULOMB.3pm
/usr/local/share/man/man3/PDL::GSLSF::COUPLING.3pm
/usr/local/share/man/man3/PDL::GSLSF::DAWSON.3pm
/usr/local/share/man/man3/PDL::GSLSF::DEBYE.3pm
/usr/local/share/man/man3/PDL::GSLSF::DILOG.3pm
/usr/local/share/man/man3/PDL::GSLSF::ELEMENTARY.3pm
/usr/local/share/man/man3/PDL::GSLSF::ELLINT.3pm
/usr/local/share/man/man3/PDL::GSLSF::ELLJAC.3pm
/usr/local/share/man/man3/PDL::GSLSF::ERF.3pm
/usr/local/share/man/man3/PDL::GSLSF::EXP.3pm
/usr/local/share/man/man3/PDL::GSLSF::EXPINT.3pm
/usr/local/share/man/man3/PDL::GSLSF::FERMI_DIRAC.3pm
/usr/local/share/man/man3/PDL::GSLSF::GAMMA.3pm
/usr/local/share/man/man3/PDL::GSLSF::GEGENBAUER.3pm
/usr/local/share/man/man3/PDL::GSLSF::HYPERG.3pm
/usr/local/share/man/man3/PDL::GSLSF::LAGUERRE.3pm
/usr/local/share/man/man3/PDL::GSLSF::LEGENDRE.3pm
/usr/local/share/man/man3/PDL::GSLSF::LOG.3pm
/usr/local/share/man/man3/PDL::GSLSF::POLY.3pm
/usr/local/share/man/man3/PDL::GSLSF::POW_INT.3pm
/usr/local/share/man/man3/PDL::GSLSF::PSI.3pm
/usr/local/share/man/man3/PDL::GSLSF::SYNCHROTRON.3pm
/usr/local/share/man/man3/PDL::GSLSF::TRANSPORT.3pm
/usr/local/share/man/man3/PDL::GSLSF::TRIG.3pm
/usr/local/share/man/man3/PDL::GSLSF::ZETA.3pm
/usr/local/share/man/man3/PDL::Image2D.3pm
/usr/local/share/man/man3/PDL::ImageND.3pm
/usr/local/share/man/man3/PDL::ImageRGB.3pm
/usr/local/share/man/man3/PDL::IO.3pm
/usr/local/share/man/man3/PDL::IO::Browser.3pm
/usr/local/share/man/man3/PDL::IO::Dicom.3pm
/usr/local/share/man/man3/PDL::IO::FastRaw.3pm
/usr/local/share/man/man3/PDL::IO::FITS.3pm
/usr/local/share/man/man3/PDL::IO::FlexRaw.3pm
/usr/local/share/man/man3/PDL::IO::GD.3pm
/usr/local/share/man/man3/PDL::IO::Misc.3pm
/usr/local/share/man/man3/PDL::IO::NDF.3pm
/usr/local/share/man/man3/PDL::IO::Pnm.3pm
/usr/local/share/man/man3/PDL::IO::Storable.3pm
/usr/local/share/man/man3/PDL::Linear.3pm
/usr/local/share/man/man3/PDL::Linfit.3pm
/usr/local/share/man/man3/PDL::LinPred.3pm
/usr/local/share/man/man3/PDL::Lite.3pm
/usr/local/share/man/man3/PDL::LiteF.3pm
/usr/local/share/man/man3/PDL::LM.3pm
/usr/local/share/man/man3/PDL::Lvalue.3pm
/usr/local/share/man/man3/PDL::Math.3pm
/usr/local/share/man/man3/PDL::Matrix.3pm
/usr/local/share/man/man3/PDL::MatrixOps.3pm
/usr/local/share/man/man3/PDL::Minuit.3pm
/usr/local/share/man/man3/PDL::NiceSlice.3pm
/usr/local/share/man/man3/PDL::Ops.3pm
/usr/local/share/man/man3/PDL::Opt::Simplex.3pm
/usr/local/share/man/man3/PDL::Options.3pm
/usr/local/share/man/man3/PDL::Perldl2::NiceSlice.3pm
/usr/local/share/man/man3/PDL::Perldl2::PDLCommands.3pm
/usr/local/share/man/man3/PDL::Perldl2::Perldl2.3pm
/usr/local/share/man/man3/PDL::Perldl2::PrintControl.3pm
/usr/local/share/man/man3/PDL::Pod::Parser.3pm
/usr/local/share/man/man3/PDL::Pod::Select.3pm
/usr/local/share/man/man3/PDL::Pod::Usage.3pm
/usr/local/share/man/man3/PDL::Polynomial.3pm
/usr/local/share/man/man3/PDL::PP.3pm
/usr/local/share/man/man3/PDL::PP::Dump.3pm
/usr/local/share/man/man3/PDL::PP::Signature.3pm
/usr/local/share/man/man3/PDL::pptemplate.3pm
/usr/local/share/man/man3/PDL::Primitive.3pm
/usr/local/share/man/man3/PDL::Reduce.3pm
/usr/local/share/man/man3/PDL::Slatec.3pm
/usr/local/share/man/man3/PDL::Slices.3pm
/usr/local/share/man/man3/PDL::State.3pm
/usr/local/share/man/man3/PDL::Tests.3pm
/usr/local/share/man/man3/PDL::Transform.3pm
/usr/local/share/man/man3/PDL::Transform::Cartography.3pm
/usr/local/share/man/man3/PDL::Types.3pm
/usr/local/share/man/man3/PDL::Ufunc.3pm
/usr/local/share/man/man3/Pdlpp.3pm
/usr/local/share/man/man3/PGPLOT.3pm