You are on page 1of 1

# Should work on windows 7, 8, 8.1, 10.

# Open CMD and Explorer.


# CMD is in "Sistema Windows"
# Check out www.ss64.com

dir
cd Desktop
mkdir folder_1
mkdir folder_2
cd folder_1
# Use Explorer to create a file file_1.txt in folder_1.
# Enable viewing file extensions in Explorer.
move file_1.txt ..\folder_2
dir
cd ..
cd fold[TAB] # press TAB to complete
cd folder_2
cls
more file_1.txt
del file_1.txt
cd ..
rmdir folder_1
rmdir folder_2
help rmdir

# Example of the power of the CLI (command-line interface):


# creation and deletion of multiple folders.
for /l %i in (1,1,5) do mkdir "folder_%i"
for /d %i in ("folder_*") do rmdir /s /q "%~i"

# How to type tilde and backtick


# Microsoft Keyboard Layout Creator
# It is convenient to follow the standard GNU/Linux keyboard map:
# ~ = Alt Gr + ì
# ` = Alt Gr + '

# Download Python from https://www.python.org/downloads/windows/


# During installation, accept "pip" and setting of environment variables.
# Environment variables can be set searchin for "env" in the Start menu
# and following the links. The PATH environment variable must include the
# location where Python is installed.

# Example: Test Python from CMD


Python 3.8.6 (tags/v3.8.6:db45529, Sep 23 2020, 15:37:30) ...
Type "help", "copyright", "credits" or "license" for more information.
>>> 1+1
2
>>> exit()

You might also like