📅  最后修改于: 2022-03-11 14:51:16.709000             🧑  作者: Mango
# Basic syntax:
ln -s /path/to/directory/* /path/to/symlinks/
# Where:
# - The /path/to/directory/ is where the real files are stored
# - The /path/to/symlinks/ is where the symlinks will be created
# - -s means symlink
# Note, I also like to add the -f and -i flags which remove existing
# destination files and prompt before replacement