rm -rf ./app
cd /etc/nginx
mkdir app2
复制文件夹/temp 到/temp2
cp -r /temp /temp2
硬链接对文件生效果,软链接还可以对文件夹生效,硬链接删除源文件,还是可以用,软链接删除源文件将不可用
<!-- 硬 --> ln originFilePath newFilePath <!-- 软 --> ln -s originFilePath newFilePath
查看文件
ls -li ./
← git命令 npm →