I have about 2000 subfolders in one folder, in each of these folders there are .pdf
files. I need a unix command that will move all these files up one folder.
相关问题
- What is the best way to do a search in a large fil
- Spring Integration - Inbound file endpoint. How to
- Why should we check WIFEXITED after wait in order
- php--glob for searching directories and .jpg only
- softlinks atime and mtime modification
相关文章
- What is the correct way to declare and use a FILE
- Making new files automatically executable?
- Reverse four length of letters with sed in unix
- Compile and build with single command line Java (L
- Extracting columns from text file using Perl one-l
- How to serialize data into indented json [duplicat
- Problem with piping commands in C
- How to update command line output?
This should copy your files into
/thefolder/
. If you want to move them replacecp
withmv
.