BATCH2019

SHOWWEB


@echo off


start "" http://www.cnn.com

start "" http://www.abc.com

start "" http://www.msnbc.com

start "" http://www.bbc.com

start "" http://www.huffingtonpost.com

start "" http://www.aljazeera.com

start "" https://news.google.com/

======================================================================

ORGANIZER

@echo off

rem https://www.makeuseof.com/tag/write-simple-batch-bat-file/

rem For each file in your folder

for %%a in (".\*") do (

rem check if the file has an extension and if it is not our script

if "%%~xa" NEQ "" if "%%~dpxa" NEQ "%~dpx0" (

rem check if extension folder exists, if not it is created

if not exist "%%~xa" mkdir "%%~xa"

rem Move the file to directory

move "%%a" "%%~dpa%%~xa\"

))

=================================================================