rsync not creating subdirectories
/usr/bin/rsync -auvz --stats --checksum -e "/usr/bin/ssh -p 1234"user@www.domain.net:/home/example/dir1/dir2/* .
2 Replies
Bad:
/usr/bin/rsync -auvz --stats --checksum -e "/usr/bin/ssh -p 1234"user@www.domain.net:/home/example/dir1/dir2/* .
Good:
/usr/bin/rsync -auvz --stats --checksum -e "/usr/bin/ssh -p 1234" user@www.domain.net:/home/example/dir1/dir2/* .