📌  相关文章
📜  bash 符号链接目录中的所有内容 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:16.709000             🧑  作者: Mango

代码示例1
# 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