• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Search for files with JPG extension only

llucas

Basic Pleskian
Server operating system version
Debian 11.11
Plesk version and microupdate number
Plesk Obsidian 18.0.64
Hello, good morning!!

I am trying to clean my server of thousands of .jpg files because I already have them with a .wepp extension and I am having a problem.

How can I search from PLESK, only the files with a .JPG extension and then delete them? Is there a way?.

I am new to PLESK and I can't find a way.

Thanks!!!
Luis
 
Connect via SSH to your server (or use the SSH Terminal extension of Plesk) and then use:

to find/list such files:
Code:
find /var/www/vhosts/ -name "*.JPG"
to delete such files:
Code:
find /var/www/vhosts/ -name "*.JPG" -delete

If you want to search (and delete) also files with .jpg, then you can use the case-insensitive option "-iname" instead of "-name"
 
Hi, thank you very much for your reply. How useful!! and how wise.

Thanks for your help, good afternoon.
Luis
 
Be very careful as that would effectively remove those files for all domains in that vhosts directory (including any third party CMS plugins that use JPG files).
 
Back
Top