sumuks's picture
Add files using upload-large-folder tool
5c9f1d7 verified
raw
history blame contribute delete
212 Bytes
#!/bin/bash
# Delete all .pt and .pth files in the current directory and its subdirectories
find . -type f \( -name "*.pt" -o -name "*.pth" \) -exec rm -v {} \;
echo "All .pt and .pth files have been deleted."