FD_F Posted October 29, 2010 Share Posted October 29, 2010 hi, how i can rsync recorsive in one big folder only files name test.php and exclude all others i tryed rsync -av --dry-run /var/www/test/ --include='test.php' /var/www/test2/ Link to comment https://forums.phpfreaks.com/topic/217187-rsync-only-one-file-name/ Share on other sites More sharing options...
trq Posted October 29, 2010 Share Posted October 29, 2010 find /var/www/test -name test.php -exec rsync -av --dry-run {} /var/www/test2/ \; Link to comment https://forums.phpfreaks.com/topic/217187-rsync-only-one-file-name/#findComment-1127959 Share on other sites More sharing options...
FD_F Posted October 29, 2010 Author Share Posted October 29, 2010 thanks grate idea when i running find /var/www/test/ -name test.php -exec rsync -av --dry-run {} /var/www/test2/ \; i get only one test.php file when i run only find /var/www/test/ -name test.php i get : /var/www/test/deeptest/test.php /var/www/test/test.php so the find works any other ideas? Link to comment https://forums.phpfreaks.com/topic/217187-rsync-only-one-file-name/#findComment-1127961 Share on other sites More sharing options...
phpfreak Posted October 30, 2010 Share Posted October 30, 2010 rsync -varP --dry-run /var/www/test/ /var/www/test2/ --include=*test.php Try that one and see if it works.. Link to comment https://forums.phpfreaks.com/topic/217187-rsync-only-one-file-name/#findComment-1128252 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.