ln [ -f ] [ -s ] SourceFile [ TargetFile ]
ln [ -f ] [ -s ] SourceFile ... TargetDirectory
The ln command links the file designated in the SourceFile parameter to the file designated by the TargetFile parameter or to the same file name in another directory specified by the TargetDirectory parameter. By default, the ln command creates hard links. To use the ln command to create symbolic links, designate the -s flag.
If you are linking a file to a new name, you can list only one file. If you are linking to a directory, you can list more than one file.
The TargetFile parameter is optional. If you do not designate a target file, the ln command creates a new file in your current directory. The new file inherits the name of the file designated in the SourceFile parameter. See example 5.
Notes:
- You cannot link files across file systems without using the -s flag.
- If TargetDirectory is already a symbolic link to a directory, then the ln command treats the existing target as a file. This means that a command such as ln -fs somepath/lname symdir will not follow the existing symbolic link of symdir, instead it will create a new symbolic link from somepath/lname to symdir.
This command returns the following exit values:
0 | All specified files were successfully linked. |
>0 | An error occurred. |
ln -f chap1 introThis links chap1 to the new name, intro. If intro does not already exist, the file name is created. If intro does exist, the file is replaced by a link to chap1. Then both the chap1 and intro file names will refer to the same file. Any changes made to one also appear in the other. If one file name is deleted with the del or the rm command, the file is not completely deleted since it remains under the other name.
ln index manualThis links index to the new name, manual/index.
Note: intro in example 1 is the name of a file; manual in example 2 is a directory that already exists.
ln chap2 jim/chap3 /home/manualThis links chap2 to the new name /home/manual/chap2 and jim/chap3 to /home/manual/chap3.
ln manual/* .This links all files in the manual directory into the current directory, . (dot), giving them the same names they have in the manual directory.
Note: You must type a space between the asterisk and the period.
ln -s /tmp/toc tocThis creates the symbolic link, toc, in the current directory. The toc file points to the /tmp/toc file. If the /tmp/toc file exists, the cat toc command lists its contents.
To achieve identical results without designating the TargetFile parameter, enter:
ln -s /tmp/toc
/usr/bin/ln | Contains the ln command. |
The cp command, mv command, rm command
The link subroutine, readlink subroutine, stat subroutine, symlink subroutine.
Directory Overview in AIX Version 4.3 System User's Guide: Operating System and Devices describes the structure and characteristics of directories in the file system.
Files Overview in AIX Version 4.3 System User's Guide: Operating System and Devices describes files, file types, and how to name files.
Linking Files and Directories in AIX Version 4.3 System User's Guide: Operating System and Devices explains the concept of file linking.
Linking for Programmers in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs discusses links from a programming viewpoint.