ln

Usage: ln [OPTION]... TARGET FILE|DIRECTORY

Create a link named FILE or DIRECTORY to the specified TARGET. You may use '--' to indicate that all following arguments are non-options.

Options:

			-s	Make symbolic link instead of hard link
			-f	Remove existing destination file
		

Example:

			$ ln -s BusyBox /tmp/ls
			$ ls -l /tmp/ls
			lrwxrwxrwx    1 root     root            7 Apr 12 18:39 ls -> BusyBox*