The topic of this article may not meet Misplaced Pages's notability guidelines for products and services. Please help to demonstrate the notability of the topic by citing reliable secondary sources that are independent of the topic and provide significant coverage of it beyond a mere trivial mention. If notability cannot be shown, the article is likely to be merged, redirected, or deleted. Find sources: "Link" Unix – news · newspapers · books · scholar · JSTOR (September 2012) (Learn how and when to remove this message) |
Operating system | Unix and Unix-like |
---|---|
Platform | Cross-platform |
Type | Command |
The link utility is a Unix command line program that creates a hard link from an existing directory entry to a new directory entry. It does no more than call the link() system function. It does not perform error checking before attempting to create the link. It returns an exit status that indicates whether the link was created (0 if successful, -1 if an error occurred). Creating a link to a directory entry that is itself a directory requires elevated privileges.
The ln command is more commonly used as it provides more features: it can create both hard links and symbolic links, and has error checking.
Synopsis
link (-s) source target
- source
- The pathname of an existing folder or file.
- target
- The name of the link to be created.
Note that source must specify an existing folder or file, and target must specify a non-existent entry in an existing directory.
Standards
The link command is part of the Single UNIX Specification (SUS), specified in the Shell and Utilities volume of the IEEE 1003.1-2001 standard.
See also
External links
- IEEE Std 1003.1-2004 Shell & Utilities volume—list of SUS utilities.
- GNU Coreutils link documentation.
Unix command-line interface programs and shell builtins | |
---|---|
File system | |
Processes | |
User environment | |
Text processing | |
Shell builtins | |
Searching | |
Documentation | |
Software development | |
Miscellaneous | |
|
GNU Core Utilities command-line interface programs | |
---|---|
File system | |
Text utilities | |
Shell utilities |
This Unix-related article is a stub. You can help Misplaced Pages by expanding it. |