Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
msys を使用してシンボリックリンクを作成しました。今私はそれを削除したいのですが、ここに私が得るものがあります:
$ ln -s /mypath mylink $ rm mylink rm: cannot remove directory `mylink': Is a directory
msys でシンボリックリンクを削除する適切な方法は何ですか?
MSys2 のシンボリック リンクは、実際のシンボリック リンクではなく、コピーです。したがって、実際に使用できますrm:
rm
rm -r, -R, --recursive remove directories and their contents recursively
例:
rm -r mylink