View Single Post
Old 3rd June 2022
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

One last note, because I just noticed it now:
Quote:
Code:
>>>ls www/htdocs/my_website/phpMyAdmin/ | wc -l                               <
    2993
I'm hoping your test #5 did NOT include the use of ls(1) as you'd posted, and you actually used find(1). This PHP application consists of a complete structure of (at version 5.1.3) 669 directories containing 3146 files. The find(1) command I'd used produces one line of output for each directory or file. The ls(1) command you show in your post would only produce output for the top level directory.

If you actually used ls(1) as shown, the count should be (at version 5.1.3) 27. If you used ls(1) and have as large of a count as shown, your copy was performed incorrectly.
Reply With Quote