Skip to content

Instantly share code, notes, and snippets.

@AndroiableDroid
Last active October 28, 2020 15:14
Show Gist options
  • Save AndroiableDroid/3563d1b3b1a623c2916fd9436e9425fd to your computer and use it in GitHub Desktop.
Save AndroiableDroid/3563d1b3b1a623c2916fd9436e9425fd to your computer and use it in GitHub Desktop.
resycapex.sh
#!/sbin/sh
APEX_LIST=$(ls /apex/)
for APEX in ${APEX_LIST}
do
unmount ${APEX}
rm -rf ${APEX} 2&>/dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment