Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
GATHER.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 2k
Category:
OS Develop
Development Platform:
WINDOWS
- GATHER(1) Minix Programmer's Manual GATHER(1)
- NAME
- gather - gather up the files in a directory for transmission
- SYNOPSIS
- gather [-s] source_dir [-d] dest_dir [-b] bytes [-f] file
- OPTIONS
- -b Desired number of bytes per output file
- -d Destination directory
- -f Base name of output files
- -s Source directory
- EXAMPLES
- gather # Collect files in current dir into 60K archives
- gather -d dir # Put the archives in dir
- gather -b 90000 # Try to produce 90K archives
- gather -s .. -d targ -b 5000
- # Try to produce 5K archives
- DESCRIPTION
- It is often useful to collect all the files in a directory into one or
- more archives for transmission by mail. This program collects all the
- files in the source directory (default: current directory) and puts them
- into a shar archive. The shar archive is then compressed and uuencoded.
- An attempt is made to have the final .uue file be about the given size
- (default: 60K), but since gather cannot really predict how much shar will
- add to the file, how much compress will reduce the file, and how much uue
- will add again, the sizes can fluctuate. If the -f file flag is given,
- the archives will be given the names file_00.uue, file_01.uue etc. If -f
- is not given, the name of the source directory is used as the base name.
- Since 7 characters of suffix are appended, the base name should not
- exceed 7 characters.
- 1