Useful Commands: Difference between revisions
Jump to navigation
Jump to search
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
= Overview = | = Overview = | ||
| Line 36: | Line 34: | ||
* [[Useful Commands/Text Processing|Text Processing]] | * [[Useful Commands/Text Processing|Text Processing]] | ||
* [[Useful Commands/Date & Time|Date & Time]] | * [[Useful Commands/Date & Time|Date & Time]] | ||
* [[Useful Commands/ | * [[Useful Commands/Arithmetic|Arithmetic]] | ||
|} | |} | ||
| Line 42: | Line 40: | ||
{| class="wikitable" | {| class="wikitable" | ||
! Purpose || Command | ! 🎯 Purpose || ⌨️ Command | ||
|- | |- | ||
| Verify $PATH by line. || | | Verify $PATH by line. || | ||
Latest revision as of 01:53, 17 September 2026
Overview
| 🌐 Networking | 💻 OS | 🛠️ Hardware |
|---|---|---|
|
||
| 📦 Packages | 📁 File System | 📊 Data |
Trouble shooting
| 🎯 Purpose | ⌨️ Command |
|---|---|
| Verify $PATH by line. |
echo $PATH | tr ':' '\n'
echo $PATH | tr ':' '\n' | grep 'snap'
|