Ok the essence of this problem is that moving directories across volumes is not 
the same as moving directories within a volume.

If you move a directory and it stays on the same virtual disk, then all UNIX is 
doing is deleting one entry in a directory and adding that same entry into a 
different directory. 

If your move is actually across volumes then all the contents have to be copied 
and then the original deleted. The safest way to do this is using 
cp -R directory1 directory2 
*inspect results 
rm -R directory1 

I believe that there is a mv -R command also, but it will essentially be doing 
the two commands I listed above but with out the ability to return to a known 
state if for some reason part of the move failed.

The other comments about checking quotes are important also, though I believe 
the tab completion in bash will automatically add quotes if necessary. 


                Best wishes,

Jonathan Cohn



> On Oct 14, 2017, at 6:50 PM, Caitlyn Furness <caitlyn.furn...@gmail.com> 
> wrote:
> 
> Hi,
> so I’ve been trying to move files from one place to another with the 
> terminal.  I am screwing this up royally, so any help would be great.  Here’s 
> what I’ve been typing:
> 
> mv Volumes/Library Disk /Volumes/My Book/books
> 
> What am I doing wrong, please?  This is trying to move files from one 
> external drive to another via terminal..
> 
> Thanks!
> Cait
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
can reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

Reply via email to