linux 2.2.13
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5223
MURIX Linux 2.6.19
MURIX Linux is a distribution based on LinuxFromScratch for building bootable CD-ROMs. more>>
MURIX Linux is a distribution based on LinuxFromScratch for building bootable CD-ROMs.
Since you build it from source, MURIX should function on almost any hardware.
<<lessSince you build it from source, MURIX should function on almost any hardware.
Download (26.6MB)
Added: 2007-01-01 License: GPL (GNU General Public License) Price:
1027 downloads
ePerl 2.2.13
ePerl is an Embedded Perl 5 Language. more>>
ePerl is an Embedded Perl 5 Language.
SYNOPSIS
eperl [-d name=value] [-D name=value] [-B begin_delimiter] [-E end_delimiter] [-i] [-m mode] [-o outputfile] [-k] [-I directory] [-P] [-C] [-L] [-x] [-T] [-w] [-c] [inputfile]
eperl [-r] [-l] [-v] [-V]
Abstract
ePerl interprets an ASCII file bristled with Perl 5 program statements by evaluating the Perl 5 code while passing through the plain ASCII data. It can operate in various ways: As a stand-alone Unix filter or integrated Perl 5 module for general file generation tasks and as a powerful Webserver scripting language for dynamic HTML page programming.
Introduction
The eperl program is the Embedded Perl 5 Language interpreter. This really is a full-featured Perl 5 interpreter, but with a different calling environment and source file layout than the default Perl interpreter (usually the executable perl or perl5 on most systems). It is designed for general ASCII file generation with the philosophy of embedding the Perl 5 program code into the ASCII data instead of the usual way where you embed the ASCII data into a Perl 5 program (usually by quoting the data and using them via print statements). So, instead of writing a plain Perl script like
#!/path/to/perl
print "foo barn";
print "baz quuxn";
for ($i = 0; $i < 10; $i++) { print "foo #${i}n"; }
print "foo barn";
print "baz quuxn";
you can write it now as an ePerl script:
#!/path/to/eperl
foo bar
baz quux
foo bar
baz quux
Although the ePerl variant has a different source file layout, the semantic is the same, i.e. both scripts create exactly the same resulting data on STDOUT.
Intention
ePerl is simply a glue code which combines the programming power of the Perl 5 interpreter library with a tricky embedding technique. The embedding trick is this: it converts the source file into a valid Perl script which then gets entirely evaluated by only one internal instance of the Perl 5 interpreter. To achieve this, ePerl translates all plain code into (escaped) Perl 5 strings placed into print constructs while passing through all embedded native Perl 5 code. As you can see, ePerl itself does exactly the same internally, a silly programmer had to do when writing a plain Perl generation script.
Due to the nature of such bristled code, ePerl is really the better attempt when the generated ASCII data contains really more static as dynamic data. Or in other words: Use ePerl if you want to keep the most of the generated ASCII data in plain format while just programming some bristled stuff. Do not use it when generating pure dynamic data. There it brings no advantage to the ordinary program code of a plain Perl script. So, the static part should be at least 60% or the advantage becomes a disadvantage.
ePerl in its origin was actually designed for an extreme situation: as a webserver scripting-language for on-the-fly HTML page generation. Here you have the typical case that usually 90% of the data consists of pure static HTML tags and plain ASCII while just the remaining 10% are programming constructs which dynamically generate more markup code. This is the reason why ePerl beside its standard Unix filtering runtime-mode also supports the CGI/1.1 and NPH-CGI/1.1 interfaces.
<<lessSYNOPSIS
eperl [-d name=value] [-D name=value] [-B begin_delimiter] [-E end_delimiter] [-i] [-m mode] [-o outputfile] [-k] [-I directory] [-P] [-C] [-L] [-x] [-T] [-w] [-c] [inputfile]
eperl [-r] [-l] [-v] [-V]
Abstract
ePerl interprets an ASCII file bristled with Perl 5 program statements by evaluating the Perl 5 code while passing through the plain ASCII data. It can operate in various ways: As a stand-alone Unix filter or integrated Perl 5 module for general file generation tasks and as a powerful Webserver scripting language for dynamic HTML page programming.
Introduction
The eperl program is the Embedded Perl 5 Language interpreter. This really is a full-featured Perl 5 interpreter, but with a different calling environment and source file layout than the default Perl interpreter (usually the executable perl or perl5 on most systems). It is designed for general ASCII file generation with the philosophy of embedding the Perl 5 program code into the ASCII data instead of the usual way where you embed the ASCII data into a Perl 5 program (usually by quoting the data and using them via print statements). So, instead of writing a plain Perl script like
#!/path/to/perl
print "foo barn";
print "baz quuxn";
for ($i = 0; $i < 10; $i++) { print "foo #${i}n"; }
print "foo barn";
print "baz quuxn";
you can write it now as an ePerl script:
#!/path/to/eperl
foo bar
baz quux
foo bar
baz quux
Although the ePerl variant has a different source file layout, the semantic is the same, i.e. both scripts create exactly the same resulting data on STDOUT.
Intention
ePerl is simply a glue code which combines the programming power of the Perl 5 interpreter library with a tricky embedding technique. The embedding trick is this: it converts the source file into a valid Perl script which then gets entirely evaluated by only one internal instance of the Perl 5 interpreter. To achieve this, ePerl translates all plain code into (escaped) Perl 5 strings placed into print constructs while passing through all embedded native Perl 5 code. As you can see, ePerl itself does exactly the same internally, a silly programmer had to do when writing a plain Perl generation script.
Due to the nature of such bristled code, ePerl is really the better attempt when the generated ASCII data contains really more static as dynamic data. Or in other words: Use ePerl if you want to keep the most of the generated ASCII data in plain format while just programming some bristled stuff. Do not use it when generating pure dynamic data. There it brings no advantage to the ordinary program code of a plain Perl script. So, the static part should be at least 60% or the advantage becomes a disadvantage.
ePerl in its origin was actually designed for an extreme situation: as a webserver scripting-language for on-the-fly HTML page generation. Here you have the typical case that usually 90% of the data consists of pure static HTML tags and plain ASCII while just the remaining 10% are programming constructs which dynamically generate more markup code. This is the reason why ePerl beside its standard Unix filtering runtime-mode also supports the CGI/1.1 and NPH-CGI/1.1 interfaces.
Download (0.19MB)
Added: 2007-05-31 License: Perl Artistic License Price:
876 downloads
Kwort Linux 2.2
Kwort Linux is an free operating system. more>>
Kwort Linux is an free operating system. Based on slackware, it provides a solid, simple and stable base system.
Kworts desktop and applications are completely based on the gtk2 toolkit. It uses the Xfce desktop as default with some modifications.
At the moment Kwort provides its own tools for retrieving packages from our mirrors called kpkg.
<<lessKworts desktop and applications are completely based on the gtk2 toolkit. It uses the Xfce desktop as default with some modifications.
At the moment Kwort provides its own tools for retrieving packages from our mirrors called kpkg.
Download (485.3MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
961 downloads
PLD Linux 2.0
PLD Linux is a Polish Linux distribution. more>>
PLD Linux is operating system, which can be applied on Your computer. Huge amount of packages available, makes that everyone should find something useful.
The distribution is being developed in Poland by Poles however, we would like users from all around the world to use it.
The PLD Linux Team has released the first official stable version on November, 22, 2002.
<<lessThe distribution is being developed in Poland by Poles however, we would like users from all around the world to use it.
The PLD Linux Team has released the first official stable version on November, 22, 2002.
Download (693MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
913 downloads
BU Linux 4.6
BU Linux is based on Fedora Core Linux, but specifically tailored for the BU environment. more>>
Linux is an increasingly popular open source Unix-like operating system. These pages arent intended as a general guide (for that, check out our list of resources) but rather information specific to using Linux here at Boston University, and particularly to using our custom distribution, BU Linux.
BU Linux is based on Fedora Core Linux, but specifically tailored for the BU environment. Weve added security updates, made modifications to make software work better with the way things are set up here, and added some applications that we think you might like to have. For details, see the FAQ.
<<lessBU Linux is based on Fedora Core Linux, but specifically tailored for the BU environment. Weve added security updates, made modifications to make software work better with the way things are set up here, and added some applications that we think you might like to have. For details, see the FAQ.
Download (70MB)
Added: 2006-08-23 License: GPL (GNU General Public License) Price:
1160 downloads

math4u2 (Linux) 2.2
math4u2 ist ein Computer-Mathematik-System, speziell konzipiert f? Vorlesungen more>> math4u2 ist ein Computer-Mathematik-System, speziell konzipiert f? den Einsatz in der Vorlesung, im Unterricht und beim Selbststudium.
Das math4u2-System besteht aus dem math4u2-Tool und dem math4u2-Server.
math4u2 ist ein Projekt der Fachhochschule Augsburg.
Speziell f? Pr?entationen und schnelle Visiualisierung von Funktionen ist math4u2 gut geeignet.<<less
Download (54.6MB)
Added: 2009-04-23 License: Freeware Price: Free
186 downloads
Other version of math4u2
Joe - math4u2 ist ein Computer-Mathematik-System, speziell konzipiert f ... math4u2. math4u2 ist ein Computer-Mathematik-System, speziellLicense:Freeware
Bonzai Linux 3.2
Bonzai Linux has been build to offer a Debian based Desktop-OS that fits on a 180MB CD-R(W). more>>
Bonzai Linux has been build to offer a Debian based Desktop-OS that fits on a 180MB CD-R(W).
The Distribution includes the current stable version of KDE and has been modified for easier installation.
Version 1.5 was released May 20, 2003. Version 3.2 was released January 14, 2004.
<<lessThe Distribution includes the current stable version of KDE and has been modified for easier installation.
Version 1.5 was released May 20, 2003. Version 3.2 was released January 14, 2004.
Download (190MB)
Added: 2005-05-16 License: GPL (GNU General Public License) Price:
923 downloads
Tiny Box for Linux 2.2
Tiny Box is a free Direct Connect server for Linux. more>> Tiny Box is a free Direct Connect server completely written in lua code and based on the Lua AIO Distribution.<<less
Download (4.19MB)
Added: 2009-04-11 License: Freeware Price: Free
195 downloads
Icepack Linux 2.75
Icepack linux is an independent Linux distribution built from scratch. more>>
Icepack linux is an independent Linux distribution built from scratch. Our objective is to offer you a user-friendly full-featured operating system, pre-configured, well structured and easy to work with, and filled with the latest stable versions of great Linux applications.
You dont need a profound Linux knowledge to install and use Icepack - our install manager guides you safely through the installation process, and the desktops and menus are self-explanatory!
<<lessYou dont need a profound Linux knowledge to install and use Icepack - our install manager guides you safely through the installation process, and the desktops and menus are self-explanatory!
Download (574MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1668 downloads
Afick for Linux 2.11-1
Afick is a security tool, very close from the well known tripwire. more>> Afick is a security tool, very close from the well known tripwire. It allows to monitor the changes on your files systems, and so can detect intrusions.<<less
Download (602KB)
Added: 2009-04-09 License: Freeware Price: Free
197 downloads
Hardware 4 Linux 0.9.3
Hardware 4 Linux project contains a set of tools to report Linux-compatible hardware to hardware4linux.info. more>>
Hardware 4 Linux project contains a set of tools to report Linux-compatible hardware to hardware4linux.info.
Enhancements:
- This release anonymizes dmidecode output, collects OS version files instead of calling osinfo, collects audio codec files, adds a README, and collects PCI modules.
<<lessEnhancements:
- This release anonymizes dmidecode output, collects OS version files instead of calling osinfo, collects audio codec files, adds a README, and collects PCI modules.
Download (MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
494 downloads
Trinacria Linux 2.0
Trinacria Linux is a new Italian distribution based on KNOPPIX. more>>
Trinacria Linux is a new Italian distribution based on KNOPPIX.
Trinacria Linuxs primary target markets are the Italian office users and Linux beginners.
<<lessTrinacria Linuxs primary target markets are the Italian office users and Linux beginners.
Download (683.9MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1114 downloads
Linux-EduCD 0.8
Linux-EduCD is a Polish live DVD based on KANOTIX, with focus on education, graphics, office, multimedia. more>>
Linux-EduCD is a Polish live DVD based on KANOTIX, with focus on education, graphics, office, multimedia and software development.
Main features:
- addition of the Compiz desktop;
- integration of GParted into the hard disk installer;
- new boot options;
- Linux kernel 2.6.18 with extra drivers and modules;
- KDE 3.5.5;
- OpenOffice.org 2.0.4;
- a range of educational software (Celestia, OpenDX, PyMOL, Rasmol, DrGeo, Yacas); multimedia applications (GIMP 2.2.13, Blender 2.42, Amarok, Audacity, Xine); network and system administration software (Wireshark, Nessus, Iptraf, EtherApe, Cheops);
- new development packages (DrScheme, Ruby, VisualPython, GPS, GNAT, Glade)
<<lessMain features:
- addition of the Compiz desktop;
- integration of GParted into the hard disk installer;
- new boot options;
- Linux kernel 2.6.18 with extra drivers and modules;
- KDE 3.5.5;
- OpenOffice.org 2.0.4;
- a range of educational software (Celestia, OpenDX, PyMOL, Rasmol, DrGeo, Yacas); multimedia applications (GIMP 2.2.13, Blender 2.42, Amarok, Audacity, Xine); network and system administration software (Wireshark, Nessus, Iptraf, EtherApe, Cheops);
- new development packages (DrScheme, Ruby, VisualPython, GPS, GNAT, Glade)
Download (1366MB)
Added: 2007-06-16 License: GPL (GNU General Public License) Price:
860 downloads
Linux DC++ 20070101
Linux DC++ is a project to port the DC++ direct connect client to Linux or any POSIX-compliant Unix. more>>
Linux DC++ is a project to port the DC++ direct connect client to Linux or any POSIX-compliant Unix.
<<less Download (MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
658 downloads

Shadow For Linux 2.0.25
This application is a powerful data encoder/decoder more>> This application is a powerful data encoder/decoder that has the possibility to encode/decode everything and anything that fits on/in your Hard Disk Drive. You can encode texts, pictures, movies, music, applications ... so on.<<less
Download (115KB)
Added: 2009-04-24 License: Freeware Price: Free
184 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above linux 2.2.13 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed