Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 436 Bytes

Windows Cheatsheet.md

File metadata and controls

25 lines (17 loc) · 436 Bytes

WINDOWS:

#Print current working directory pathname.
	echo %cd%

#Make a new directory
	mkdir mynewfolder

#Change current directory to another directory
	cd nameoffolder

#Change directory to parent directory
	cd ..

#List the contents of current directory
	dir

#Run the Python Interpreter
	python

#Run the Python program stored in the 'program.py' file
	python program.py

#List all content in current directory
	ls