/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# Find jpg find . -name *.jpg # You can then delete the jpgs as follows find . -name *.jpg -delete