Filesystem navigationLinux CLI
ls
List files with flexible formatting and filters.
ls -lah
Filesystem navigation, process management, and networking utilities.
List files with flexible formatting and filters.
ls -lah
pwd
Navigate directories and print the current working directory.
cd <path>
df
Summarize directory sizes and filesystem usage.
du -sh ./*
Traverse directories to locate files by name, size, or metadata.
find . -name "*.log"
rg
Search file contents with regex patterns.
grep -R "<pattern>" ./src
sed
Transform text streams inline while filtering.
awk '{print $1,$3}' access.log
top
htop
Display process information and CPU/memory consumption.
ps aux | grep <process>
Send signals to processes for graceful or immediate termination.
kill -TERM <pid>
Control systemd services and units.
sudo systemctl status <service>
wget
Perform HTTP requests or download files from URLs.
curl -X POST -H "Content-Type: application/json" -d '{"status":"ok"}' https://<endpoint>
ss
Inspect active connections and listening ports.
ss -tulnp
traceroute
Validate connectivity and trace network paths.
ping -c 4 <host>