List directory contents.
Filesls -lah
Developer
Search common Linux shell commands for files, network, processes, permissions, packages, and logs.
List directory contents.
Filesls -lah
Show the current working directory.
Filespwd
Copy files or directories.
Filescp -r src backup
Move or rename files.
Filesmv app.log logs/app.log
Remove files or directories.
Filesrm old.log
Create a file or update its timestamp.
Filestouch notes.txt
Search text patterns.
Searchgrep -R "error" /var/log
Find files and directories.
Searchfind . -type f -name "*.ts"
Change permissions.
Permissionschmod 755 script.sh
Change file owner or group.
Permissionssudo chown user:group file.txt
List processes.
Processps aux
Monitor system processes.
Processtop
Control systemd services.
Systemsudo systemctl restart nginx
Read systemd logs.
Logsjournalctl -u nginx -f
Show and manage network interfaces.
Networkip addr
Inspect sockets and listening ports.
Networkss -tulpn
Print file contents.
Filescat /etc/os-release
View file contents page by page.
Filesless app.log
Show the end of a file and optionally follow updates.
Logstail -f /var/log/syslog
Show the beginning of a file.
Fileshead -n 20 app.log
Show file or directory disk usage.
Diskdu -sh .
Show filesystem disk usage.
Diskdf -h
Create or extract tar archives.
Archivetar -czf archive.tar.gz folder
Create zip archives.
Archivezip -r site.zip public
Extract zip archives.
Archiveunzip site.zip
Make HTTP requests.
Networkcurl -I https://example.com
Download files from the web.
Networkwget https://example.com/file.zip
Test connectivity to a host.
Networkping example.com
Trace network route to a host.
Networktraceroute example.com
Manage packages on Debian and Ubuntu systems.
Packagessudo apt install nginx
Manage packages on Fedora and related systems.
Packagessudo dnf install nodejs
Manage Docker containers and images.
Containersdocker ps
Edit scheduled cron jobs.
Systemcrontab -e
FAQ
It helps you quickly find common Linux 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