Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 49.598.379 Times

Irs E File Gov freeware
Filter: All | Freeware | Demo
 

Irs E File Gov

< 1 2 3 4 5 
Added: January 18, 2010 | Visits: 1.036

File::PathList File::PathList is a Perl module that can find a file within a set of paths (like @INC or Java classpaths). SYNOPSIS # Create a basic pathset my $inc = File::PathList->new( @INC ); # Again, but with more explicit params my $inc2 = File::PathList->new( paths => @INC, cache => 1, ); #...



Platforms: *nix

License: Freeware Size: 26.62 KB Download (93): File::PathList Download

Added: January 18, 2010 | Visits: 1.223

File::Remove File::Remove is a Perl module to remove files and directories. SYNOPSIS use File::Remove qw(remove); # removes (without recursion) several files remove qw( *.c *.pl ); # removes (with recursion) several directories remove 1, qw( directory1 directory2 ); # removes (with recursion)...





Platforms: *nix

License: Freeware Size: 14.34 KB Download (161): File::Remove Download

Added: January 18, 2010 | Visits: 1.023

File::Searcher File::Searcher is a searches for files and performs search/replacements on matching files. SYNOPSIS use File::Searcher; my $search = File::Searcher->new(*.cgi); $search->add_expression(name=>street, search=>1234 Easy St., replace=>456 Hard Way, options=>i);...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (90): File::Searcher Download

Added: September 08, 2010 | Visits: 1.747

Copy file or directory path Copy file or directory path is a service menu that can copy the full path of file or directory to klipper.. Download KDE-Apps.org Community Portal for KDE Applications Software Office Multimedia Graphic Network Printing Education Games Development Administration Scientific Security Utilities...


Platforms: *nix

License: Freeware Download (114): Copy file or directory path Download

Added: October 24, 2010 | Visits: 1.066

IR File Chooser IR File Chooser is an infrared remote-controlled fileselection menu. Infra Red (IR) File Chooser is a remote-controlled menu for selecting files and loading them by an assigned program. You can add as many filetypes and associated programs as you wish. The functionality of Infra Red (IR)...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (140): IR File Chooser Download

Added: January 08, 2010 | Visits: 1.940

jsp File Browser jsp File Browser is an easy to use and easy to install file browser java server page. This JSP program allows remote web-based file access and manipulation.. JSP file browser allows remote web-based file access and manipulation like upload.


Platforms: *nix

License: Freeware Size: 23.55 KB Download (250): jsp File Browser Download

Added: August 03, 2010 | Visits: 1.058

XSD/e XSD/e is a XML Processing for Embedded Systems. CodeSynthesis XSD/e is an open-source XML parser generator for mobile and embedded systems. It provides event-driven, stream-oriented XML parsing, XML Schema validation, and C++ data binding while maintaining a small footprint and portability....


Platforms: *nix

License: Freeware Size: 2.6 MB Download (96): XSD/e Download

Added: January 25, 2010 | Visits: 1.137

File::Next::OO File::Next::OO is a Perl module with file-finding iterator Wrapper for File::Next::files function. SYNOPSIS File::Next::OO is just a wrapper around File::Next::files function. But it is easy to remember and less typing. Call it always with object notation. Not mixed as in File::Next itself....


Platforms: *nix

License: Freeware Size: 8.19 KB Download (90): File::Next::OO Download

Added: June 15, 2010 | Visits: 1.254

File::Sync File::Sync is a Perl access to fsync() and sync() function calls. SYNOPSIS use File::Sync qw(fsync sync); fsync(*FILEHANDLE) or die "fsync: $!"; sync(); use File::Sync qw(fsync); use IO::File; $fh = IO::File->new("> /tmp/foo") or die "new IO::File: $!"; ... fsync($fh) or die "fsync:...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (112): File::Sync Download

Added: May 14, 2010 | Visits: 980

PostScript::File PostScript::File is a Perl base class for creating Adobe PostScript files. SYNOPSIS use PostScript::File qw(check_tilde check_file incpage_label incpage_roman); Simplest An hello world program: use PostScript::File; my $ps = new PostScript::File(); $ps->add_to_page( <


Platforms: *nix

License: Freeware Size: 22.53 KB Download (118): PostScript::File Download

Added: June 01, 2010 | Visits: 1.096

File File is the open source implementation of the file command used on almost every free operating system (OpenBSD, Linux, FreeBSD, NetBSD) and also on systems that use free software (including OS/2, DOS, MS Windows, etc.). The file command, if youre not familiar with it, is a command-line tool...


Platforms: *nix

License: Freeware Size: 542.72 KB Download (109): File Download

Added: August 18, 2010 | Visits: 781

File::RsyncP::Digest File::RsyncP::Digest is a Perl interface to rsync message digest algorithms. SYNOPSIS use File::RsyncP::Digest; $rsDigest = new File::RsyncP::Digest; # specify rsync protocol version (default is <= 26 -> buggy digests). $rsDigest->protocol(version); # file MD4 digests...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (95): File::RsyncP::Digest Download

Added: August 27, 2010 | Visits: 1.007

File::pushd File::pushd is a Perl module to change directory temporarily for a limited scope. SYNOPSIS use File::pushd; chdir $ENV{HOME}; # change directory again for a limited scope { my $dir = pushd( /tmp ); # working directory changed to /tmp } # working directory has reverted to $ENV{HOME}...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (99): File::pushd Download

Added: November 04, 2010 | Visits: 1.202

gFast File gFast File is a file manager like Konqueror or Nautilus. You can work with your files with classical operations: Copy, Move, Rename and Open like others but with gFast File you have a work queue with all your operations. gFast File work to complete all task without your attention. gFast File is...


Platforms: *nix

License: Freeware Size: 829.44 KB Download (100): gFast File Download

Added: June 14, 2010 | Visits: 1.211

Net::FTP::File Net::FTP::File is a Perl extension for simplifying FTP file operations. SYNOPSIS use Net::FTP::File; my $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",-anonymous@) or die "Cannot login ", $ftp->message;...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (98): Net::FTP::File Download

Added: February 04, 2010 | Visits: 768

File::VirtualPath File::VirtualPath is a portable abstraction of a file/dir/url path. SYNOPSIS Content of thin shell "startup.pl": #!/usr/bin/perl use strict; use warnings; my $root = "/home/johndoe/projects/aardvark"; my $separator = "/"; if( $^O =~ /Win/i ) { $root = "c:projectsaardvark";...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (88): File::VirtualPath Download

Added: May 13, 2010 | Visits: 829

File::Repl File::Repl is a Perl module that provides file replication utilities. SYNOPSIS use File::Repl; %con = { dira => C:/perl, dirb => M:/perl, verbose => 1, age => 10, }; $ref=File::Repl->New(%con); $r1 = $ref->Update(.p(l|m),a<>b,1); $r2 = $ref->Update(.t.*,a<>b,1,.tmp$); The...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (96): File::Repl Download

Added: January 17, 2010 | Visits: 1.058

File::Flock File::Flock is a Perl module for file locking with flock. SYNOPSIS use File::Flock; lock($filename); lock($filename, shared); lock($filename, undef, nonblocking); lock($filename, shared, nonblocking); unlock($filename); my $lock = new File::Flock /somefile;...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (114): File::Flock Download

Added: January 05, 2010 | Visits: 906

File::BasicFlock File::BasicFlock is a Perl module for file locking with flock. SYNOPSIS use File::BasicFlock; lock($filename); lock($filename, shared); lock($filename, undef, nonblocking); lock($filename, shared, nonblocking); unlock($filename); Lock files using the flock() call. The file to be...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (99): File::BasicFlock Download

Added: January 01, 2010 | Visits: 1.294

File::Stat::ModeString File::Stat::ModeString - conversion file stat mode to/from string representation. SYNOPSIS use File::Stat::ModeString; $string = mode_to_string ( $st_mode ); $st_mode = string_to_mode ( $string ); $type = mode_to_typechar( $st_mode ); $record = < IN >; chomp $record; $record =~...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (92): File::Stat::ModeString Download

< 1 2 3 4 5