DEV Community

samsepi0l
samsepi0l

Posted on

Move uncategorised files into categories with linux terminal

//to move uncategorised files into categories 

mkdir images
mv *.jpg images/

mkdir pdf
mv *.pdf pdf/

//etc, for any type of file, this is done, faster way
Enter fullscreen mode Exit fullscreen mode

Ctrl + Shift + R - refresh page without cache in browser

Top comments (0)