Coding, Linux, Hacking Security, Learning!
Posts tagged find command
find and copy file in linux
Jul 3rd
find all the mp3 file in the current directory and copy them to /home/user/song directory
find ./ -iname \*.mp3 cp {} /home/user/song \;
Coding, Linux, Hacking Security, Learning!
Jul 3rd
find all the mp3 file in the current directory and copy them to /home/user/song directory
find ./ -iname \*.mp3 cp {} /home/user/song \;