historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/QemuMacDrivers/cleanup.sh

9 lines
199 B
Bash
Raw Normal View History

2024-01-16 11:20:27 -06:00
#!/bin/sh
#
# Cleanup cruft left by MacOS
find . -name "@eaDir" -print0 | xargs -0 rm -rf
find . -type d -print0 | xargs -0 chmod o-w
find . -type f -print0 | xargs -0 chmod a-x
chmod +x cleanup.sh