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.
|
|
#!/bin/bash
echo "Warning: This will delete all video files in the directory livesystem/" read -p "Are you sure [yes/no] ? " sure [ "$sure" != "yes" ] && exit
for x in livesystem/* ; do found=0 for y in bin boot dev etc home lib linuxrc opt proc root sbin sys tmp usr var ; do [ "${x#livesystem/}" == "$y" ] && found=1 done [ $found -eq 1 ]&& continue echo -n "removing ${x#livesystem/} ... " rm -rf livesystem/${x#livesystem/} echo "done" done
echo "Cleanup finished"
|