# Linux Command Quick Reference

## Files

- လက်ရှိနေရာ: `pwd`
- Files ကြည့်ရန်: `ls -la`
- Directory ပြောင်းရန်: `cd /path`
- File ရှာရန်: `find . -name "*.log"`
- Text ရှာရန်: `grep -R "error" .`

## System

- Disk usage: `df -h`
- Folder size: `du -sh ./folder`
- Memory: `free -h`
- Processes: `ps aux`
- Listening ports: `ss -tulpn`
- Service status: `systemctl status <service>`
- Recent logs: `journalctl -u <service> -n 100`

Command ကိုမသေချာလျှင် `man <command>` သို့မဟုတ် `<command> --help` ကိုအရင်ဖတ်ပါ။
