简体   繁体   中英

Move directory without knowing name

I have a directory with files and another directory:

drwxr-xr-x   3 RORY  staff      102 Mar 29 05:07 FOLDER-XYZ123
drwx------+ 23 RORY  staff      782 Mar 29 04:19 ..
-rwxrwxrwx   1 RORY  staff  5000000 Mar 24 21:48 setup.part1.rar
-rwxrwxrwx   1 RORY  staff  1622537 Mar 24 21:48 setup.part2.rar

How can I move the FOLDER someplace else without actually knowing it's name? FOLDER-XYZ123 could be named anything, so I wouldn't know the name in advance.

像这样

find $SOURCE_DIR -type d -exec mv -f {} $TARGET_DIR \\;

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