简体   繁体   中英

move sub folder in one directory to another directory

I want to move subfolder1 to folder2 in parent directory (I have shown it here). How can I do that in Linux with one line programming?
Thanks!

Parent
  Folder 1
     Subfolder1
     Subfolder2
  Folder 2
  Folder 3

I'm really not sure it's appropriate to answer this, but if you're in 'parent':

mv folder1/subfolder2 folder2

Or generally,

mv path/to/source /path/to/target

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM