You can move everything without specifying file names using "glob" (otherwise called a "wildcard"). This is a * .
So let's say you are in a DataDirectory . You can move everything from Data/NewDataCopy to Data by doing the following: mv Data/NewDataCopy/* Data/ . Then delete using rmdir Data/NewDataCopy .
Starting with a DataDirectory , to do all you would do is:
mv Data/NewDataCopy/* Data/ rmdir Data/NewDataCopy mv ProtectedOrig/NewData/* ProtectedOrig/ rmdir ProtectedOrig/NewData
source share