linux 软链接 2021-11-16 Source Edit History 软链接 软链接文件的操作1234567891011ln -s [源文件或目录] [目标文件或目录]1. 创建一个软链接ln -s a b使b指向a2. 删除软链接rm -f xxx3. 修改软链接ln -sf a b