Excerpts from Jyoti Ranjan's message of 2014-08-16 00:57:52 -0700:
> We will have to be little bit cautious in using glob because of its
> inherent usage pattern. For e.g. the file starting with . will not get
> matched.
> 

That is a separate bug, but I think the answer to that is to use rsync
instead of mv and globs. So this:

    mv $tmp/./* $destdir

becomes this:

    rsync --remove-source-files $tmp/. $destdir

_______________________________________________
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

Reply via email to