Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4569354
By: gnuwin32

According to the manual, gzip archives the files given as arguments and, when
one of the arguments is a subdirectory, the files in that subdirectory. So,
it does not seem possible to gzip the files recursively. You'll have to create
a list of files first, e.g. with find from the findutils, and then give these
as arguments to gzip. For example:

find.exe tree -name "*.txt" -exec gzip.exe -kvr "{}" ";"


______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=74807

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
GnuWin32-Users mailing list
GnuWin32-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnuwin32-users

Reply via email to