Delete a Folder via Command Line Interface

DEL /F/Q/S *.* > NUL /F — forces the deletion of read-only files. /Q — enables quiet mode. You are not ask if it is ok to delete files (if you don’t use this, you are asked for any file in the folder). /S — runs the command on all files in any folder under the selected structure. … Read more

How to optimize SVG Images

Great tool for SVG optimization, tremendous results… https://github.com/svg/svgo This command will optimize all the SVGs in the target folder (-r recursively) and output them at the output folder (leaving the original SVGs untouched) Example 1 – optimize a folder call svgo -f “D:\code\alif-central\src\images” -r Example 2 – optimize a folder and output to new folder … Read more