Main > Free Download Search >

Free files in software for linux

files in

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10170
X-files 1.43

X-files 1.43


X-Files is a graphical file management program. more>>
X-Files is a graphical file management program for Unix/X-Window environment. It was inspired by the Amiga program DirWork.

This application differs slightly from the main stream file managers in that it has always only one window. On top (or bottom) of the window you have ActionbuttonsTM -area. Other main areas are the two directory listings for file related actions. You can use quick pop-up menu for basic operations. File extensions can be configured to launch any program you desire for that file.
The appearance and functionality can be fully configured according to your taste using the built-in editors.

Tested on: Intel Linux, DEC Alpha, SGI, HP-UX, Solaris
(Should work on any Unix-machine running Tcl/Tk.)
<<less
Download (0.15MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1649 downloads
list files 0.2

list files 0.2


list files package prints to file list of files in a given directory. more>>
list files package prints to file list of files in a given directory.
Handy if youd like to, say, tell a friend of yours what ebooks you have, and wouldnt feel like typing them all by hand.
Hope you can find it useful.
INSTALLATION
i assume youve got everything in its standard places; otherwise you probably know what to do anyway.
to install for one user
copy listFiles.desktop to ~/.kde/share/apps/konqueror/servicemenus
copy listFiles.sh to /usr/local/bin or elsewhere in the path
to install for all users
copy listFiles.desktop to /usr/share/apps/konqueror/servicemenus
copy listFiles.sh to /usr/local/bin or elsewhere in the path
Enhancements:
- added counting the number of items
- added the possibility to change the place where the listing is written to
- some minor changes to the code
<<less
Download (0.002MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
581 downloads
File Lister 2.3

File Lister 2.3


File Lister provides a Web interface for listing files and directories. more>>
File Lister provides a Web interface for listing files and directories.

FileLister is meant to be an open source alternative for listing files/directories with an easy navigateable (web-)interface.

<<less
Download (0.034MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
992 downloads
wyoFiler 0.7.2

wyoFiler 0.7.2


wyoFiler is a filer showing the directory hierarchy and the files in the same tree window. more>>
wyoFiler shows all directories and files of a base directory in one tree window. Directories and files can be selected and manipulated across the whole hierarchy, from the base directory all the way down to the lowest level.

Selected items may be in different directories on different levels. The base directory itself may be switched to any other convenient directory.

All file manipulations are done in the background, so multiple commands are possible simultaneously.

The filer can display multiple base directories in tabbed notebook pages or separate top level windows.
<<less
Download (1.7MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1640 downloads
Files Zip for Plone 1.1.0RC2

Files Zip for Plone 1.1.0RC2


Files Zip for Plone project allows users to download all files from a folder (recursively) in a ZIP archive. more>>
Files Zip for Plone project allows users to download all files from a folder (recursively) in a ZIP archive.

Adds a document action to folders (and folderish contents) that enables to download all files and images from archetypes based contents available from that folder in a ZIP file.

Optionally, the user may get the DC metadata of the contents that provide files in XML-RDF format in the ZIP file.

<<less
Download (0.12MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
File::Slurp 9999.12

File::Slurp 9999.12


File::Slurp is a Perl module for efficient reading/writing of Complete files. more>>
File::Slurp is a Perl module for efficient reading/writing of complete files.

SYNOPSIS

use File::Slurp;

my $text = read_file( filename ) ;
my @lines = read_file( filename ) ;

write_file( filename, @lines ) ;

use File::Slurp qw( slurp ) ;

my $text = slurp( filename ) ;

This module provides subs that allow you to read or write entire files with one simple call. They are designed to be simple to use, have flexible ways to pass in or get the file contents and to be very efficient. There is also a sub to read in all the files in a directory other than . and ..

These slurp/spew subs work for files, pipes and sockets, and stdio, pseudo-files, and DATA.

read_file

This sub reads in an entire file and returns its contents to the caller. In list context it will return a list of lines (using the current value of $/ as the separator including support for paragraph mode when it is set to ). In scalar context it returns the entire file as a single scalar.

my $text = read_file( filename ) ;
my @lines = read_file( filename ) ;

The first argument to read_file is the filename and the rest of the arguments are key/value pairs which are optional and which modify the behavior of the call. Other than binmode the options all control how the slurped file is returned to the caller.

If the first argument is a file handle reference or I/O object (if ref is true), then that handle is slurped in. This mode is supported so you slurp handles such as DATA, STDIN. See the test handle.t for an example that does open( -| ) and child process spews data to the parant which slurps it in. All of the options that control how the data is returned to the caller still work in this case.

NOTE: as of version 9999.06, read_file works correctly on the DATA handle. It used to need a sysseek workaround but that is now handled when needed by the module itself.

You can optionally request that slurp() is exported to your code. This is an alias for read_file and is meant to be forward compatible with Perl 6 (which will have slurp() built-in).

<<less
Download (0.026MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
910 downloads
My File Manager 0.4

My File Manager 0.4


My File Manager is a small and lightweight file manager. more>>
My File Manager is a small and lightweight file manager. It was developed to provide a small and fast file manager, which has only a few dependencies from other packages, but including some interestings things like mount partitions, minimalistic burning capability and mass renaming files. MFM use FLTK graphics toolkit.
Main features:
- Selectable shown fields (permissions, users, groups, date and size)
- Various sort options
- Rename group of files
- Change attributes of group of files
- Compress files
- Burn CD/DVD
- Find files by name or by content
- Mount/umount partitions
<<less
Download (0.092MB)
Added: 2006-06-11 License: GPL (GNU General Public License) Price:
1237 downloads
File::Repl 1.20

File::Repl 1.20


File::Repl is a Perl module that provides file replication utilities. more>>
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),ab,1);
$r2 = $ref->Update(.t.*,ab,1,.tmp$);

The File:Repl provides simple file replication and management utilities. Its main functions are

File Replication

Allowing two directory structures to be maintained, ensuring files that meet selection logic criteria are mirrored and otherwise synchronized.

Bulk Renaming

Allowing files in a directory structure to be renamed according to the selection logic.

Compressing

Allowing files in a directory structure to be compressed according to a given logic.

Process

Run a common perl process against files in a directory structure according to selection logic.

Deletion

Allowing files in a directory structure to be deleted according to the selection logic.

<<less
Download (0.015MB)
Added: 2007-06-28 License: Perl Artistic License Price:
849 downloads
File-center 0.3

File-center 0.3


File-center is a simple Web application to download and upload files. more>>
File-center is a simple Web application to download and upload files. Its interface is very simple, and the scripts to download and upload are simple too.

File-center uses the PATH_INFO to pass the name of the directory or of the file in the URL.

<<less
Download (0.006MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
891 downloads
Daizu::File 0.3

Daizu::File 0.3


Daizu::File is a Perl class representing files in working copies. more>>
Daizu::File is a Perl class representing files in working copies.

Each object of this class represents a particular file in a Daizu CMS working copy (a record in the wc_file table).

METHODS

Note that all the functions which return the value of a Subversion property will strip leading and trailing whitespace, and treat a value which is empty or entirely whitespace as if it wasnt set at all.

Daizu::File->new($cms, $file_id)

Return a new Daizu::File object for the file with the specified ID number.

$file->data

Return a reference to a string containing the file data (content).

$file->wc

Return a Daizu::Wc object representing the working copy in which this file lives.

$file->guid_uri

Return the GUID URI for this file.

$file->directory_path

Returns the path of a directory, either the same as the file if its a directory itself, or the path of its parent directory, or if its at the top level.

$file->permalink

Returns the first URL generated by the file, which will be the URL you want to link to most of the time. For articles this will always be the normal HTML version of the article, even if there are also other URLs available for it, and it will always be the first page of multipage articles. For non-article files there is no guarantee about what this will return, but most will only generate a single URL anyway, and for those that dont generators are likely to return the most linkable URL first.

The URL returned is an absolute URL provided as a URI object.

Returns nothing if the file doesnt generate any URLs.

There are some cases where this might not be what you want. For example, the root directory of a website using Daizu::Gen will either not generate a URL at all, or will generate one for a Google sitemap XML file, neither of which is likely to be useful for linking. To get the URL of the website you would probably need to find a file called something like _index.html. On the other hand, the Daizu::Gen::Blog generator will give you a sensible URL for the blog homepage if you call this on its root directory.

$file->urls_in_db($method, $argument)

Return a list of the URLs (plain strings, each an absolute URI) of the file which have the specified method and argument values, drawing from the url table in the database.

$file->article_urls

Return information about the URLs which the file should have, if it is an article. Fails if it isnt.

<<less
Download (0.41MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1059 downloads
Filemerger 1.01

Filemerger 1.01


Filemerge is a tools that allows you to merge two files in to one big file. more>>
Filemerge is a tools that allows you to merge two files in to one big file. Filemerger will run under linux but will not work with Freebsd.
Usage:
fm [argument] file1 file2 newfile
-v Display the version of mlm
-? Display this help file.
Example:
This will read the file test1, test2 and write all the file contents to the file test3.
fm /root/test1 /root/test2 /root/test3
File test1:
Line 1
Line 2
File Test2
Line2
Line3
File Test3
line1
Line2
Line3
Enhancements:
- Changes were made to the help file.
<<less
Download (0.040MB)
Added: 2007-06-11 License: Freeware Price:
886 downloads
Filesystem in Userspace 2.7.0

Filesystem in Userspace 2.7.0


Filesystem in Userspace is an interface for filesystems implemented in userspace. more>>
FUSE can implement a fully functional filesystem in a userspace program.
Main features:
- Simple library API
- Simple installation (no need to patch or recompile the kernel)
- Secure implementation
- Userspace - kernel interface is very efficient
- Usable by non privileged users
- Runs on Linux kernels 2.4.X and 2.6.X
- Has proven very stable over time
Installation
Some projects include the whole FUSE package (for simpler installation). In other cases or just to try out the examples FUSE must be installed first. The installation is simple, after unpacking enter:
./configure
make
make install
If this produces an error, please read on.
The configure script will try to guess the location of the kernel source. In case this fails, it may be specified using the --with-kernel parameter. Building the kernel module needs a configured kernel source tree matching the running kernel. If you build your own kernel this is no problem. On the other hand if a precompiled kernel is used, the kernel headers used by the FUSE build process must first be prepared. There are two possibilities:
1. A package containing the kernel headers for the kernel binary is available in the distribution (e.g. on Debian its the kernel-headers-X.Y.Z package for kernel-image-X.Y.Z)
2. The kernel source must be prepared:
- Extract the kernel source to some directory
- Copy the running kernels config (usually found in /boot/config-X.Y.Z) to .config at the top of the source tree
- Run make menuconfig, then make dep at the top of the source tree (only needed on 2.4 kernels)
If using the 2.6 kernel, then write access is needed to some files in the kernel source tree. Usually it is enough if you make .tmp_versions and .__modpost.cmd writable.
Enhancements:
- Stacking support for the high level API
- Add filename charset conversion module
- Improved mounting
<<less
Download (0.47MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
845 downloads
IANA /etc Files 2.20

IANA /etc Files 2.20


IANA /etc Files is a tool that generates /etc/services and /etc/protocols from IANA data. more>>
IANA /etc Files installs /etc/services and /etc/protocols using data from the Internet Assigned Numbers Authority. Included are snapshots of the data from the IANA, scripts to transform that data into the needed formats, and scripts to fetch the latest data.
Installation
The installation process is flexible and friendly to unattended installation even though, due to its simplicity, it does not use Autoconf.
For basic installation run:
make
su
make install
This creates /etc/services and /etc/protocols without using internet access.
To install in a different location, use something like:
make PREFIX=/mnt/tmp install
This would create /mnt/tmp/etc/services and /mnt/tmp/etc/protocols.
For unusual installations, "make PREFIX=/foo ETC_DIR=bar install" will create /foo/bar/services and /foo/bar/protocols.
Enhancements:
- This release contains updated data from the IANA, improvements to the test function, and support for generating stripped files.
- It is the second of a series of planned changes intended to meet the needs of distributions.
<<less
Download (0.16MB)
Added: 2006-11-15 License: Open Software License Price:
1075 downloads
X-Files KDM Theme 0.1

X-Files KDM Theme 0.1


X-Files KDM Theme is a login screen for KDE desktop manager with a nice X-Files background. more>>
X-Files KDM Theme is a login screen for KDE desktop manager with a nice X-Files background.

<<less
Download (MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
961 downloads
File::Find::Rule 0.30

File::Find::Rule 0.30


File::Find::Rule is an alternative Perl interface to File::Find. more>>


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 $rule = File::Find::Rule->new;
$rule->file;
$rule->name( *.pm );
my @files = $rule->in( @INC );

<<less
Download (0.014MB)
Added: 2007-04-26 License: Perl Artistic License Price:
911 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5