Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 1.2 KB

command-line.md

File metadata and controls

69 lines (48 loc) · 1.2 KB

Command Line

Links

Command Line Video Series (Free)

Name Link
Wes Bos - Command Line Power User https://www.youtube.com/playlist?list=PLu8EoSxDXHP7tXPJp5ZmUpuT7sFvrswzf
cmdchallenge - Command Line Interactive Quiz https://cmdchallenge.com/

lsof -i -P -n | grep LISTEN

lsof -i :{pid}

ps aux | grep {pid}

kill {pid}

Get current directory
pwd

Show all files in current directory
ls

Change directory
cd <directory name>

Clear the screen
clear