标签: linux shell
我想开发一个在执行结束时自行删除的shell脚本。
如何做到这一点?
答案 0 :(得分:2)
只需[[ -f "$0" ]] && rm "$0"。可能希望防止写入失败等。
[[ -f "$0" ]] && rm "$0"