Unix and Linux Discussions Tagged with link |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
14,411 |
What is on Your Mind? |
|
|
|
3 |
4,263 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
25,811 |
Solaris |
|
|
|
5 |
6,810 |
Solaris |
|
|
|
0 |
4,293 |
Shell Programming and Scripting |
|
|
|
10 |
8,498 |
Solaris |
|
|
|
1 |
4,125 |
Solaris |
|
|
|
0 |
10,507 |
Open Source |
|
|
|
2 |
8,776 |
HP-UX |
|
|
|
0 |
3,602 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,843 |
UNIX for Dummies Questions & Answers |
|
|
|
12 |
5,007 |
Shell Programming and Scripting |
|
|
|
8 |
19,815 |
Shell Programming and Scripting |
|
|
|
4 |
4,128 |
Shell Programming and Scripting |
|
|
|
6 |
7,413 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
14,703 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
4,549 |
High Performance Computing |
|
|
|
0 |
1,631 |
Software Releases - RSS News |
|
|
|
0 |
1,179 |
Software Releases - RSS News |
|
|
|
0 |
2,064 |
Solaris BigAdmin RSS |
|
|
|
2 |
8,628 |
Filesystems, Disks and Memory |
|
|
|
0 |
1,553 |
Software Releases - RSS News |
|
|
|
3 |
2,852 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,998 |
Complex Event Processing RSS News |
|
|
|
2 |
11,697 |
Web Development |
|
|
|
0 |
1,497 |
Software Releases - RSS News |
|
|
|
0 |
2,537 |
OS X Support RSS |
|
|
|
1 |
4,792 |
IP Networking |
|
|
|
0 |
1,284 |
Software Releases - RSS News |
|
|
|
2 |
2,922 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
4,592 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,035 |
BSD |
|
|
|
4 |
2,470 |
Solaris |
|
|
|
0 |
1,351 |
Software Releases - RSS News |
|
|
|
1 |
4,104 |
OS X (Apple) |
|
|
|
0 |
4,877 |
Solaris BigAdmin RSS |
|
|
|
5 |
373,156 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,982 |
Linux |
|
|
|
0 |
1,172 |
Software Releases - RSS News |
|
|
|
6 |
9,487 |
Programming |
link(1) General Commands Manual link(1)
NAME
link, unlink - Creates an additional directory entry for an existing file
SYNOPSIS
link file1 file2
unlink file
STANDARDS
Interfaces documented on this reference page conform to industry standards as follows:
link: XCU5.0
unlink: XCU5.0
Refer to the standards(5) reference page for more information about industry standards and associated tags.
DESCRIPTION
The link command performs the link() system call to create an additional directory entry for an existing file, file1. In effect, the
underlying file then has two names, file1 and file2 (either of these arguments can be a pathname). The old and new entries share equal
access rights to the underlying file.
The unlink command performs the unlink() system call to remove a link to file created by link. The unlink command removes the directory
entry specified by the file parameter and, if the entry is a hard link, decrements the link count of the file referenced by the link.
You should be familiar with the link() and unlink() system calls before you use these commands.
The link and unlink commands do not issue error messages when the associated system call is unsuccessful.
NOTES
The link and unlink commands cannot be used to link and unlink directories.
EXIT STATUS
The link and unlink commands both exit with the following: The link() or unlink() system call succeeded. Too few or too many arguments
specified. The link() or unlink() system call failed.
SEE ALSO
Commands: fsck(8), ln(1)
Functions: link(2), unlink(2)
link(1)