I am replacing my current Ubuntu version version to Ubuntu 20.04 and making backup of my .cpp program file location of my .cpp program files are in current working directory. I am made a myprog folder on desktop of my Ubuntu machine and trying to move all .cpp file in that folder. I there is any direct command to do this. Thanks in advance
Asked
Active
Viewed 57 times
1 Answers
1
Read This How to move multiple files at once to a specific destination directory?
mv *IDENTIFIER* ~/YourPath/
*
is a wildcard for zero or more characters, this means zero or more characters, followed by IDENTIFIER
, followed by zero or more characters.
This will move all the files that contain the IDENTIFIER
you specified.

Ajay
- 678
-
Thanks it works – atharva mishra May 22 '20 at 08:33