ubuntu - How to concatenate 2 seperate folders -


i trying concatenate 2 folders , folders should copy new folder using command line in ubuntu.

i used tee command creating 1 more folder in second folder of input folder.

try :

rsync -ap /original_a/* /destination_c/original_a/ 

this copy of folder a

rsync -ap /original_b/* /destination_c/original_b/ 

that should concatenate folders , b new folder c.


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -