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 50.040.988 Times

Mac Find Duplicates freeware
Filter: All | Freeware | Demo
 

Mac Find Duplicates

< 1 2 3 4 5 
Added: March 03, 2010 | Visits: 1.665

Mac::Errors Mac::Errors is a Perl module with constants for Mac error codes. SYNOPSIS use Mac::Errors qw(openErr); if( $value == openErr ) { ... } my $error = $MacErrors{ $symbol }; # -- OR -- my $error = $MacErrors{ $number }; my $symbol = $error->symbol; my $number = $error->number; my $desc =...



Platforms: *nix

License: Freeware Size: 54.27 KB Download (98): Mac::Errors Download

Added: November 06, 2010 | Visits: 1.183

Mac::PropertyList Mac::PropertyList is a Perl module to work with Mac plists at a low level. SYNOPSIS use Mac::PropertyList; my $data = parse_plist( $text ); # == OR == my $data = parse_plist_file( $filename ); # == OR == open my( $fh ), $filename or die "..."; my $data = parse_plist_fh( $fh ); my...





Platforms: *nix

License: Freeware Size: 17.41 KB Download (126): Mac::PropertyList Download

Added: July 07, 2010 | Visits: 1.174

AudioCD::Mac AudioCD::Mac is a MacPerl extension for controlling Audio CDs. SYNOPSIS #!perl -w use AudioCD; use strict; my $cd = new AudioCD; $cd->volume(255); $cd->play(2); print "Now playingn" if $cd->status == CD_PLAY; printf "Volume is %dn", $cd->volume; sleep(5); $cd->pause; print "Now...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (91): AudioCD::Mac Download

Added: April 15, 2010 | Visits: 1.274

Mac::Apps::Seasonality::LoadICAOHistory Mac::Apps::Seasonality::LoadICAOHistory is a Perl module to load data into an SQLite2 database with the Seasonality weather.db schema. SYNOPSIS use English qw{ -no_match_vars }; use DBI; use Mac::Apps::Seasonality::LoadICAOHistory qw{ :conversion &clean_icao_history_set...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (98): Mac::Apps::Seasonality::LoadICAOHistory Download

Added: July 12, 2010 | Visits: 1.274

Mac::Apps::Seasonality::Constants Mac::Apps::Seasonality::Constants is a Perl module for static definitions of aspects of Seasonality. SYNOPSIS use Mac::Apps::Seasonality::Constants qw{ $SEASONALITY_NAME $SEASONALITY_CREATOR $SEASONALITY_HISTORY_DATABASE_PATH }; use Mac::Apps::Seasonality::Constants qw{...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): Mac::Apps::Seasonality::Constants Download

Added: August 13, 2010 | Visits: 1.492

Test::File::Find::Rule Test::File::Find::Rule is a Perl module to test files and directories with File::Find::Rule. SYNOPSIS use Test::File::Find::Rule; # Check that all files in $dir have sensible names my $rule = File::Find::Rule ->file ->relative ->not_name(qr/^[w]{1,8}.[a-z]{3,4}$/);...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (103): Test::File::Find::Rule Download

Added: March 18, 2010 | Visits: 1.450

File::Find File::Find is a Perl module to traverse a directory tree. SYNOPSIS use File::Find; find(&wanted, @directories_to_search); sub wanted { ... } use File::Find; finddepth(&wanted, @directories_to_search); sub wanted { ... } use File::Find; find({ wanted => &process, follow => 1 }, .);...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (96): File::Find Download

Added: July 20, 2010 | Visits: 1.193

File::Find::Rule::XPath File::Find::Rule::XPath is a Perl module that contains rule to match on XPath expressions. SYNOPSIS use File::Find::Rule::XPath; my @files = File::Find::Rule->file ->name(*.dkb) ->xpath( //section/title[contains(., "Crustacean")] ) ->in($root); This module extends File::Find::Rule to...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (97): File::Find::Rule::XPath Download

Added: March 07, 2010 | Visits: 1.817

Mac-on-Linux Mac-on-Linux (MOL) is a virtual machine which runs Mac OS (inlucluding Mac OS X) on top of Linux/ppc.. Mac-on-Linux is a Linux/PPC program that virtualises MacOS or MacOSX in Linux.


Platforms: *nix

License: Freeware Download (172): Mac-on-Linux Download

Added: April 07, 2010 | Visits: 2.350

Mac::EyeTV Mac::EyeTV is a interface to the Elgato EyeTV Digital Video Recorder. SYNOPSIS use Mac::EyeTV; my $eyetv = Mac::EyeTV->new(); # See Mac::EyeTV::Channel foreach my $channel ($eyetv->channels) { my $name = $channel->name; my $number = $channel->number; print "$number $namen"; } # See...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (179): Mac::EyeTV Download

Added: November 03, 2010 | Visits: 1.285

Remove playlist duplicates Remove playlist duplicates is a simple perl script which on track change detects all duplicate playlist entries and leaves just the first one of each of them. I have files duplicated on my mp3 player and hard drive and when I plugged my player in, my collection contained duplicate entries. this...


Platforms: *nix

License: Freeware Download (113): Remove playlist duplicates Download

Added: March 12, 2010 | Visits: 954

Email::Find Email::Find allows you to find RFC 822 email addresses in plain text. Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (132): Email::Find Download

Added: November 09, 2010 | Visits: 852

MP3::Find::Filesystem MP3::Find::Filesystem is a File::Find-based backend to MP3::Find. SYNOPSIS use MP3::Find::Filesystem; my $finder = MP3::Find::Filesystem->new; my @mp3s = $finder->find_mp3s( dir => /home/peter/music, query => { artist => ilyaimy, album => myxomatosis, }, ignore_case => 1, );.


Platforms: *nix

License: Freeware Size: 29.7 KB Download (96): MP3::Find::Filesystem Download

Added: August 15, 2010 | Visits: 952

MP3::Find::Base MP3::Find::Base is a base class for MP3::Find backends. SYNOPSIS package MyFinder; use base MP3::Find::Base; sub search { my $self = shift; my ($query, $dirs, $sort, $options) = @_; # do something to find and sort the mp3s... my @results = do_something(...); return @results; }...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (89): MP3::Find::Base Download

Added: July 13, 2010 | Visits: 1.084

MP3::Find MP3::Find is a Perl module to search and sort MP3 files based on their ID3 tags. SYNOPSIS # select with backend you want use MP3::Find qw(Filesystem); print "$_n" foreach find_mp3s( dir => /home/peter/cds, query => { artist => ilyaimy, title => deep in the am, }, ignore_case => 1,...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (96): MP3::Find Download

Added: January 21, 2010 | Visits: 1.170

NetAddr::IP::Find NetAddr::IP::Find is a Perl module to find IP addresses in plain text. SYNOPSIS use NetAddr::IP::Find; $num_found = find_ipaddrs($text, &callback); This is a module for finding IP addresses in plain text. Functions NetAddr::IP::Find exports one function, find_ipaddrs(). It works very...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): NetAddr::IP::Find Download

Added: April 14, 2010 | Visits: 1.193

File::Find::Rule SYNOPSIS use File::Find::Rule; # find all the subdirectories of a given directory my @subdirs = File::Find::Rule->directory->in( $directory ); # find all the .pm files in @INC my @files = File::Find::Rule->file() ->name( *.pm ) ->in( @INC ); # as above, but without method chaining my...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (100): File::Find::Rule Download

Added: April 02, 2010 | Visits: 1.363

File::Find::Similars File::Find::Similars is a Similar files locator. SYNOPSIS use File::Find::Similars; File::Find::Similars->init(0, @ARGV); similarity_check_name(); Similar-sized and similar-named files are picked as suspicious candidates of duplicated files. What descirbes it better than a actual...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (89): File::Find::Similars Download

Added: January 25, 2010 | Visits: 1.577

Mac mini 8 icons of the Mac mini in the Tiger's familly colors.


Platforms: Mac

License: Freeware Size: 204 KB Download (246): Mac mini Download

Added: January 25, 2010 | Visits: 834

Mac BBC Games List Mac BBC Games List is a games database front end for Mac BeebEm. The program displays a list of games that can be sorted by name, year, publisher or genre. A screen shot is also displayed if available. Double clicking a program will launch BeebEm with the disc loaded and automatically start the...


Platforms: Mac

License: Freeware Size: 7.8 MB Download (99): Mac BBC Games List Download

< 1 2 3 4 5