I have downloaded files from another server to root directory called public_html, Now I am looking for move all files and folders from public_html to /home/userb/public_html so I am trying to move it like below command
mv -v ~/public_html/* ~/home/userb/public_html/ but its giving me error called
mv: target '/root/home/userb/public_html/' is not a directory Let me know how I can do it as well its need change permission after move?
Thanks!