适用于 Linux Bash 和 Windows Batch 的自删除脚本
我有一个卸载脚本,可以清理与应用程序一起使用的附加工具。 该脚本的版本可在 Windows 和 Linux 上运行。
我希望能够删除卸载脚本文件以及脚本运行的目录(无论是 Windows 批处理文件还是 Linux bash 文件)。现在,除了脚本及其运行目录之外的所有内容在运行后仍然保留。
如何删除脚本和脚本目录?
谢谢
I have an uninstall script that cleans up an add-on tool used with an application.
Versions of the script run on both Windows and Linux.
I'd like to be able to delete the uninstall script file and also the directory in which the script runs too (in both the case of a Windows batch file and also for the case of a Linux bash file). Right now everything but the script and the directory in which it runs remains after it runs.
How can I delete the script and the script's directory?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Bash 中,你可以这样做
In Bash, you can do