How to uninstall iOS app use shell in jaibreak iPhone

I want to uninstall iOS app by shell in jaibreak iPhone whith batches,
In my mind just use “rm -rf ${path/to/sanbox}”…
but after do this shell, the icon of app which i want unistall also exist in springboard , would be anything else should be remove?

uicache刷新一下图标缓存。

你这主意傻爆了,跨版本不兼容

你打包一个由2部分构成的deb:

####dylib
SpringBoard内开一个服务,接收外部notification,一旦收到,从notification中拿到要卸载App的bundle ID,然后卸载。

####CLT(命令行工具)
把要卸载App的信息作为CLT的参数,然后CLT由这个参数得出App的bundle ID,放在notification里发给SpringBoard。

多谢您的一番指导,在下幡然醒悟

或者试试LSApplication

怎么使用代码来卸载app?