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
LN.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:
OS Develop
Development Platform:
WINDOWS
- LN(1) Minix Programmer's Manual LN(1)
- NAME
- ln, clone - create a link to a file
- SYNOPSIS
- ln [-ifmrRvx] file [name]
- ln [-ifrRvx] file ... dir
- clone [-ifmvx] file [name]
- OPTIONS
- -i Ask if ok to remove a file
- -f Remove existing links
- -m Merge trees, disable the into-a-directory trick
- -rR Recursively link a directory tree
- -v Display what ln is doing
- -x Do not cross device boundaries
- EXAMPLES
- ln file newname # Make newname a synonym for file
- ln /usr/games/chess # Create a link called chess
- DESCRIPTION
- A directory entry is created for name . The entry points to file .
- Henceforth, name and file can be used interchangeably. If name is not
- supplied, the last component of file is used as the link name. If more
- than one file is supplied or the name refers to an existing directory,
- links will be created in that directory. An existing name will not be
- removed unless the -i or -f flag is specified.
- Clone is a convenient synonym for ln -fmr to create a so-called "link
- farm", a directory full of links to the original tree.
- SEE ALSO
- cp(1), link(2), unlink(2).
- 1