Tagged Questions
4
votes
2answers
447 views
rm -rf failing if deleting in parallel
rm -rf will fail if something tries to delete the same file tree (I think because rm enumerates the files first, then deletes).
A simple test:
# Terminal 1
for i in `seq 1 1000`; do mkdir -p ...