Symbolic link command format:
ln -s
pathname target
Example:
ln -s /export/home/paul/hosts_link /etc/hosts
This creates a symbolic link from the file or directory hosts_link to /etc/hosts
Back