Ladro
Anomaly
- 751
- 547
Maybe try using the -exec flag with find?
find ./lgrep "kinkycoeds" -exec mv {} /storage/videos/birthday \;
edit: an example to run in your home dir to see how it works:
find . -exec ls -al {} \;
Yeah, built in find stuff is all you need. Make sure you're in the local directory you want to search, otherwise you can just specify the full path after find.
Find the files and make sure it's what you want:
Code:
find ./ -name *kinkycoeds* -exec ls -alh {} \;
Then make the move:
Code:
find ./ -name *kinkycoeds* -exec mv {} /storage/videos/birthday/ \;