![]() |
How to count jpg files on a server?
How can I count the jpg files on my dedicated server? Is there a program out there I could use and would it put a huge load on the server while it's doing it?
|
use find
Code:
find -name '*.jpg' | wc -l |
Quote:
will give it a try |
this one might work a little better :winkwink:
find / -name *jpg -print | wc -l |
I have this one as well. Looks like I'm going to have to brush up on my SSH run commands.
find/ -type f -name"*.jpg" | wc -l What I really want to know is how badly can I fuck up my server with my miniscule amount of knowledge. |
Quote:
|
Quote:
Let the partay begin! :thumbsup |
Quote:
|
All times are GMT -7. The time now is 01:25 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123