7 ms·
A simple script (in linux, windows or whatever) could do that no problem. In fact, I'm pretty sure something like: find -iname ".txt" -exec mv -v {} /home/user
by spdmn 13y ago
A simple script (in linux, windows or whatever) could do that no problem.
In fact, I'm pretty sure something like:
find -iname ".txt" -exec mv -v {} /home/user \;
or
mv .mp3 /whatever/folder/youd/like
mv .jpg /repeat/as/many/times/as/needed
would work. Is this what you had in mind? Hope I'm not way off base here.
EDIT: for some reason Hacker News edited out my asterisks and the letters within are displayed as italics. Curious.
- acesubido 13y agoYep exactly! I know that it could be done via bash or a batch file. I just wanted to solve this usual problem with a simple project that also allows me to learn more about Scala since it's used at where I work.
- spdmn 13y agoAh, I see! Well that's as good of a place to start as any. Good luck in your endeavours.