Skip to main content

Appendix B Shells and Commands

Table B.0.1. Operating systems and their common shell programs
Shell Operating System
Command (Prompt) Shell Windows
PowerShell Windows
bash (Bourne-again Shell) macOS
bash (Bourne-again Shell) Linux/UNIX
Table B.0.2. Shell commands
Task Shell Command
Get the current working directory Command Prompt cd
PowerShell pwd
bash pwd
List directory contents Command Prompt dir
PowerShell dir
bash ls
Change the current working directory Command Prompt cd path\to\directory
PowerShell cd path\to\directory
bash cd path/to/directory
Move up one directory level Command Prompt cd ..
PowerShell cd ..
bash cd ..
Create a new directory Command Prompt mkdir directoryname
PowerShell mkdir directoryname
bash mkdir directoryname
Copy a file Command Prompt copy source\file\path destination\file\path
PowerShell Copy-Item -Path source\file\path -Destination destination\file\path
bash cp source/file/path destination/file/path
Delete a file Command Prompt del filename
PowerShell del filename
bash rm filename