/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# print them find . -regex '.*([0-9])\..*' # count them find . -regex '.*([0-9])\..*' | wc -l # delete them find . -regex '.*([0-9])\..*' -delete