Main > Free Download Search >

Free filenames software for linux

filenames

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 183
Apache File Manager 0.19

Apache File Manager 0.19


Apache File Manager is an Apache mod_perl Web server filemanager. more>>
The Apache::FileManager module is a simple HTML file manager. It provides file manipulations such as cut, copy, paste, delete, rename, extract archive, create directory, create file, edit file, and upload files.
It also has the ability to rsync the server htdocs tree to another server with the click of a button.
Enhancements:
- prevented file edit screen from opening when cancel is clicked when creating new filenames
- fixed up documentation
<<less
Download (0.012MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1644 downloads
Renameit 0.0.2b

Renameit 0.0.2b


renameit is an MP3 filename standardizer. more>>
renameit is an MP3 filename standardizer. It formats your MP3 filenames based on the ID3 tag info, removes embedded spaces, and notifies you when an MP3 has no ID3 tag.

This is an example for usage:
Some Song from some album.mp3 with ID3 Artist of "Some Dudez" and ID3 Trackname of "Some Song" ends up beingSome_Song(Some_Dudez).mp3

./addtag FileToBeTagged.mp3
It will prompt you for artist and track name, add the tag, and then move
the file up to the mp3s directory, where you can run renameit on it.

./batchrenameit
It will get all the mp3 filenames in top directory, and call renameit for
each.

./edittag FileToBeEdited.mp3
Displays current ID3 tag and prompts for edit. After edit, calls
renameit.

./batchtag
Mass file tagger. Gets all mp3 filenames in need_id3 directory and calls
addtag for each.

./batchtagedit
It will get all the mp3 filenames in this directory tree, and call edittag
for each. Great for adjusting things like bands named Perl Jam..altho that
might be a kewl name for a band ;)

./makeindexfile
This builds index.html for all mp3 files in this directory tree. The
index will only show the mp3 files.
<<less
Download (0.003MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1218 downloads
pyRenamer 0.4.1

pyRenamer 0.4.1


pyRenamer project allows you to change the name of several files at the same time easily. more>>
pyRenamer project allows you to change the name of several files at the same time easily.
Main features:
- You can use patterns to rename files.
- You can use search & replace to rename files.
- You can use common substitutions.
- You can manually rename selected files.
Installation:
tar xzvf pyrenamer-0.1.tar.gz
cd pyrenamer-0.1
./configure --prefix /usr
sudo make install
Enhancements:
- Now you can start pyRenamer in the directory that you want
- Preferences added to set default directories
- Added command line options to set directories
- Fixed bug on {num} pattern and syntax change from {num-2} to {num+2}
- Preview new filename when clicking PAGE_UP, PAGE_DOWN or RETURN on manual rename
- Add button to clear previewed filenames
- Better file selection filter
- Better unicode support
- Some GUI changes
- Bug fixes
- Check if directories set on Preferences are correct
- Remove debug info from console
- Fix bug reading preferences from gconf
- Activate Rename button on selection using keys
<<less
Download (0.066MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
805 downloads
File::Find::Closures 1.06

File::Find::Closures 1.06


File::Find::Closures is a Perl module with functions you can use with File::Find. more>>
File::Find::Closures is a Perl module with functions you can use with File::Find.

SYNOPSIS

use File::Find;
use File::Find::Closures qw(:all);

my( $wanted, $list_reporter ) = find_by_name( qw(README) );

File::Find::find( $wanted, @directories );
File::Find::find( { wanted => $wanted, ... }, @directories );

my @readmes = $list_reporter->();

SOME PARTS ARE NOT IMPLEMENTED YET! THIS IS ALPHA ALPHA SOFTWARE: A MERE SHELL OF AN IDEA.

I wrote this module as an example of both using closures and using File::Find. Students are always asking me what closures are good for, and heres some examples. The functions mostly stand alone (i.e. they dont need the rest of the module), so rather than creating a dependency in your code, just lift the parts you want).

When I use File::Find, I have two headaches---coming up with the &wanted function to pass to find(), and acculumating the files.

This module provides the &wanted functions as a closures that I can pass directly to find(). Actually, for each pre-made closure, I provide a closure to access the list of files too, so I dont have to create a new array to hold the results.

The filenames are the full path to the file as reported by File::Find.
Unless otherwise noted, the reporter closure returns a list of the filenames in list context and an anonymous array that is a copy (not a reference) of the original list. The filenames have been normalized by File::Spec::canonfile unless otherwise noted. The list of files has been processed by File::Spec::no_upwards so that "." and ".." (or their equivalents) do not show up in the list.

<<less
Download (0.007MB)
Added: 2007-04-26 License: Perl Artistic License Price:
911 downloads
CLSimilarImages 0.4.1

CLSimilarImages 0.4.1


CLSimilarImages is a command-line utility for finding visually similar images which may not be identical. more>>
CLSimilarImages is a command-line utility for finding visually similar images which may not be identical. It reads filenames from standard input, and outputs customisable results to standard output.

It can write similarity data to files for rapid future comparisons, with timestamps for quick updates. The project can compare one collection of images with itself, or two collections with each other. It works well in scripts or with pipes.

<<less
Download (0.13MB)
Added: 2007-03-24 License: GPL (GNU General Public License) Price:
945 downloads
massrename 0.9.7

massrename 0.9.7


massrename is a general-purpose utility for batch-renaming file extensions. more>>
massrename is a general-purpose utility for batch-renaming file extensions, as well as strings within the base filename (for example, "SomeblehFile.mp3" to "SomeblahFile.mp3")
Usage: /usr/bin/massrename [ ARGUMENTS ] ...
Examples:
massrename --from mp3 --to ogg # rename *.mp3 to *.ogg
massrename -f ogg -t mp3 -n # rename *.ogg to *.mp3, no logging
Operation Modifiers:
Required arguments:
-f, --from source file extension or string to rename
-t, --to output file extension or string to rename to
Optional arguments:
-b, --beginning add a string to the beginning of the filename
-c, --change-dir DIR rename files in DIR instead of the current directory
-d, --dotfiles rename hidden files too
-e, --end add a string to the end of the filename
-h, --help display this help output and exit
-i, --ignore-case ignores filenames case when searching
for files to rename
-n, --no-logs dont make a log of renamed files
-p, --perl-rename use perls rename() function instead of the systems
"mv" command
-v, --version display version information and exit
-w, --within search for string within filename instead of extension
Enhancements:
- Minor bugfixes.
- The README file has been revised.
- An optional argument "--ignore-case" has been added, allowing massrename to ignore the case of filenames to be renamed at runtime.
- Debian and Red Hat package formats have been added.
<<less
Download (0.008MB)
Added: 2006-11-24 License: Artistic License Price:
1172 downloads
File::Remove 0.34

File::Remove 0.34


File::Remove is a Perl module to remove files and directories. more>>
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) several files and directories
remove 1, qw( file1 file2 directory1 *~ );

# trashes (with support for undeleting later) several files
trash qw( *~ );

File::Remove::remove removes files and directories. It acts like /bin/rm, for the most part. Although unlink can be given a list of files, it will not remove directories; this module remedies that. It also accepts wildcards, * and ?, as arguments for filenames.

File::Remove::trash accepts the same arguments as remove, with the addition of an optional, infrequently used "other platforms" hashref.

<<less
Download (0.014MB)
Added: 2007-04-27 License: Perl Artistic License Price:
911 downloads
icecream 1.2

icecream 1.2


icecream is a non-interactive stream download utility. more>>
icecream project is a non-interactive stream download utility.
It connects to icecast and shoutcast servers and redirects all fetched content to an stdin-capable player or to media files on your disk.
With an option turned on, it can save the stream into different files, each representing the played track. It is also possible to tee the input to both disk and stdout.
Enhancements:
- Support was added for formatted filenames (such as "podcast-%Y-%m-%d").
<<less
Download (0.017MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1376 downloads
fileschanged 0.6.1

fileschanged 0.6.1


fileschanged is a command line utility for monitoring files for alterations. more>>
fileschanged is a GNU/Linux command-line utility that reports when files have been altered.

This software is a client to the FAM (File Alteration Monitor) server that is now available in some distributions. Heres how the fileschanged FAM client works: you give it some filenames on the command line and then it monitors those files for changes.

When it discovers that a file has changed (or has been altered), it displays the filename on the standard-output.

Heres what the usage looks like:

Usage: fileschanged [OPTION...] [FILE]...
Monitors FILEs for alterations. Display the filenames of FILEs that were created, changed, deleted, started execution or finished executing.

-s, --show=EVENT[,...] Display created, changed, deleted, executing, or
executed files (Default is "created,changed"
-a, --show-all Display all file events and the associated action
-f, --files-to-monitor (Default) Monitor the FILEs on the command line
-l, --filelist=FILE Monitor the list of filenames inside FILE
-r, --recursive Monitor subdirectories of directories
-t, --timeout=N Delay showing changed files for N seconds (Def=2)
-p, --display-action Display action when showing altered files
-x, --exec=PROG Run PROG when file altered (PROG action filename)
-?, --help Give this help list
--usage Give a short usage message
-V, --version Print program version

FILEs must exist when monitoring begins, or they will not be monitored.
<<less
Download (0.029MB)
Added: 2005-04-07 License: GPL (GNU General Public License) Price:
1661 downloads
Sanefile 1.05

Sanefile 1.05


Sanefile is a tool to easily and quickly clean and change a large number of filenames. more>>
Sanefile is a tool to easily and quickly clean and change a large number of filenames. The idea started when I started “ripping” my own CD’s and the filenames were all different and full of errors. When I started getting TV downloads from other sources, the issue became a problem.

I had to find an efficient way of changing a large number of filenames. Sanefile was the result. Simple, single-purpose and very efficient at it with total exploitation of Tcl’s rich Regular Expression capabilities.

What this tool is NOT: spy-ware, spam-ware, virus or any other crappy stuff.

With Sanefile, you can use the full power of regular expressions. For instance, imagine that you want to filter off all files starting with a A. To use the just A would remove from the list all the files with A in it. Not the solution. If you use ^A (Carat and A) it means that it has to match A only at the beginning of the text.

More examples:

^text matches "text" in the beginning of the name
text$ matches "text" in the END of the filename
. matches ANY character
[ ] range indicator as in:
[a-z] matches ONE letter "a" to "z"
[a-zA-Z] matches ONE letter "a" to "z" and "A" to "Z"
[0-9] matches ONE digit
[^range] (caret) matches if NOT in the range as in:
[^0-9] matches if it is NOT a digit
* operator for repetition
.* matches everything
[0-9]* multiple digits
[^a-zA-Z0-9]* a bunch of everything BUT a letter or digit
escape operator
t tab
( when you want to match (
. when you want to match .
when you want to match (RARELY DONE! Think why.)
() used to group expressions
ab* a followed with multiple bs
(ab)* multiple ab (different from above!)

^Doors.*([A-Z][0-9]*).*.mp3$ Matches all files starting with Doors, have somewhere in the middle a letter followed by digits and end in ".mp3"
<<less
Download (0.007MB)
Added: 2006-12-11 License: Artistic License Price:
1047 downloads
Antennavis 0.3

Antennavis 0.3


Antennavis is a OpenGL antenna visualisation toolkit for nec2. more>>
Antennavis is a OpenGL antenna visualisation toolkit for nec2.

This software was written by Kenneth E. Harker, WM5R in 1998. I liked the 3D images of the presented antenna patterns on Kenneths web-site so much that I have put some effort into creating a useable software package out it.

So I contacted Kenneth to ask him how he thought about further development. Ken agreed to put up a project page and website for future versions. The project page is available at Savannah.

This package provides a tcl script called antennavis which makes use of the provided TkAnt widget. Antennavis will expect a nec2 binary somewhere in your path. The nec2 binary you are using should take filenames for arguments, e.g. "nec2 input.nec output.nec". In case you cant meet these requirements, you can download a statically linked nec2 version from: qsl.net or mattsnetwork.
<<less
Download (0.13MB)
Added: 2006-03-02 License: GPL (GNU General Public License) Price:
1332 downloads
RFind 1.0

RFind 1.0


RFind it indexes and searches filenames in a directory hierarchy. more>>
RFind indexes the filenames of a given directory, and allows you to quickly search this index with regular expressions. Search-on-typing with more than 500,000 indexed filenames is easily possible.
RFind attempts to be very configurable so that it can be useful to everyone. It features hierarchically presented search results, search-on-typing, and the ability to define rules to execute on mouse click.
Main features:
- Hierarchical presented search results
- Search-on-typing
- Define rules to execute on mouseclick
<<less
Download (0.011MB)
Added: 2005-04-28 License: Public Domain Price:
1639 downloads
dia2sql 1.4

dia2sql 1.4


dia2sql is yet another dia2sql converter. more>>
dia2sql is yet another dia2sql converter. It uses libxml2 to parse UML objects from a Dia diagram and generates corresponding SQL code to create the tables specified in the UML diagram
It takes one or more filenames and outputs to stdout. Multiple files are considered as one database by merging multiple tables with the same name.
Enhancements:
- This release has been rewritten in C and adds support for database views.
<<less
Download (0.026MB)
Added: 2005-11-18 License: GPL (GNU General Public License) Price:
1437 downloads
LoggedFS 0.5

LoggedFS 0.5


LoggedFS is a transparent fuse-filesystem which allows you to log every operation that happens in the backend filesystem. more>>
LoggedFS is a transparent fuse-filesystem which allows you to log every operation that happens in the backend filesystem.

Logs can be written to syslog, to a file, or to standard output. LoggedFS project comes with an XML configuration file in which you can choose exactly what you want to log.

You can add filters on users, operations (open, read, write, chown, chmod, etc.), filenames, and return codes.

Filenames filters are regular expressions. Since it is fuse-based, you dont need to change anything in your kernel or hard disk partition to use it.

<<less
Download (0.008MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1004 downloads
fnumfilt 1.2

fnumfilt 1.2


fnumfilt is an image list processor. more>>
fnumfilt is a linux/posix tool that helps me processing lists of images made with my digital camera.
The images of my cam have the format "r.jpg". Often I want to process just some of the images. With fnumfilt, I can filter number ranges extracted from the filenames, and print resulting lists or execute a tool like convert (ImageMagick) to easily create thumbnails.
The following three chapters are the output of fnumfilt -C, fnumfilt -h and fnumfilt -H. I hope they help you deciding whether thiss a tool for you.
Numfilt is GPL software. Youre free to use it. But you use it on your own risk.
Enhancements:
- Renamed program to fnumfilt, because theres another numfilt out there.
- Changed -x to always print the executed command.
- Fixed conflict in -o/-x. -x is now independent.
<<less
Download (0.012MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5