mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
492 B

  1. #!/bin/bash
  2. echo "Warning: This will delete all video files in the directory livesystem/"
  3. read -p "Are you sure [yes/no] ? " sure
  4. [ "${sure}" != "yes" ] && exit
  5. for x in livesystem/* ; do
  6. found=0
  7. for y in bin boot dev etc home lib linuxrc opt proc root sbin sys tmp usr var ; do
  8. [ "${x#livesystem/}" == "${y}" ] && found=1
  9. done
  10. [ ${found} -eq 1 ] && continue
  11. echo -n "removing ${x#livesystem/} ... "
  12. rm -rf "livesystem/${x#livesystem/}"
  13. echo "done"
  14. done
  15. echo "Cleanup finished"