Pour créer un nouveau lien symbolique (échouera si le lien symbolique existe déjà) :
ln -s /path/to/file /path/to/symlink
Pour créer ou mettre à jour un lien symbolique :
ln -sf /path/to/file /path/to/symlink
ln -s TARGET LINK_NAME
Où le -s
le rend symbolique.
ln -s EXISTING_FILE_OR_DIRECTORY SYMLINK_NAME