Useful commands to know

Windows

Bat

Firewall blocking script for .exe files in a folder

This is a windows script to add a firewall rule that blocks every executable in the current file. It will add one rule per executable and it's not dynamically updated.

make a txt file and name it to something.bat then add the following inside
@ setlocal enableextensions
@ cd /d "%~dp0"

for /R f" dir=out program="f" dir=in program="%%f" action=block
)
pause

CMD

Powershell

Bulk Copying

robocopy /E /xj /r:10 /w:10 "DriveLetter:\Source" "DriveLetter:\Destination"

/r:[n] // how many retries for each read error
/w:[n] // how many retries for each write error

Linux

Directory

Change Directory aka cd

List Files

Manuals aka man

man for manual pages
command -h or --help for details about command
apropos bla for any command including bla in its name or description