List files and folders.
Filesls -la
Developer
Search common macOS Terminal commands for files, network, processes, Homebrew, and system tasks.
List files and folders.
Filesls -la
Change the current directory.
Filescd ~/Documents
Copy files or directories.
Filescp file.txt backup.txt
Move or rename files.
Filesmv old.txt new.txt
Create a directory.
Filesmkdir reports
Print file contents.
Filescat package.json
Search text from files or command output.
Searchgrep -R "TODO" .
Find files by name or condition.
Searchfind . -name "*.log"
Change file permissions.
Permissionschmod +x script.sh
List active processes.
Processps aux
Send a signal to a process.
Processkill -9 1234
List open files and ports.
Networklsof -i :3000
Test connectivity to a host.
Networkping example.com
Make HTTP requests from Terminal.
Networkcurl -I https://example.com
Manage packages with Homebrew.
Packagesbrew install node
Open files, folders, or URLs.
Systemopen .
Print the current directory.
Filespwd
Remove a file.
Filesrm old.log
Create a file or update its timestamp.
Filestouch notes.txt
Show disk usage for files and folders.
Filesdu -sh .
Show free disk space.
Diskdf -h
Copy files and directories with macOS metadata support.
Filesditto source destination
Copy terminal output to the macOS clipboard.
Clipboardcat file.txt | pbcopy
Paste clipboard contents into terminal output.
Clipboardpbpaste
Show macOS version information.
Systemsw_vers
Display detailed hardware and software information.
Systemsystem_profiler SPHardwareDataType
Read or write macOS user defaults.
Systemdefaults read com.apple.finder
Check and install macOS software updates.
Systemsoftwareupdate -l
Manage launch agents and daemons.
Servicelaunchctl list
Show network interface configuration.
Networkifconfig
Show network status and routes.
Networknetstat -rn
Inspect and configure system network settings.
Networkscutil --dns
Speak text through macOS text-to-speech.
Systemsay "Hello NovaKit"
FAQ
It helps you quickly find common macOS terminal commands, understand what they do, and copy example usage.
Yes. Use the category controls to narrow results by files, network, process, system, and other command groups.
Yes. Each command includes a copy button with a short copied confirmation message.
Related tools