This is an outdated guide. Most of the tools here are genuinely poor replacements for their GUI counterparts. However, there are many alternatives superior to their GUI versions.<p>If you want something better than Activity Monitor– tells you what (which process?) is lagging your computer, and how (RAM, CPU, or swap?)– with an overall slicker interface, try:<p><pre><code> glances
</code></pre>
If you want something better than weather.com– no ads, fast loading– try:<p><pre><code> curl wttr.in
</code></pre>
Better than spotlight– full-text search over 128GB drive in less than 30s– try:<p><pre><code> rg "query"
</code></pre>
Force quit a program, try:<p><pre><code> pkill -9 ProgramName
</code></pre>
Suspend a program and un-suspend it later, try:<p><pre><code> pkill -STOP ProgramName
pkill -CONT ProgramName
</code></pre>
View content of a file with syntax highlighting, try:<p><pre><code> bat file.py
</code></pre>
Open a file and copy it to your clipboard, try:<p><pre><code> cat image.png | pbcopy
</code></pre>
Go to a recently visited folder with autocomplete that works reliably, try:<p><pre><code> z foldername
</code></pre>
Convert units– faster than typing into Google, try:<p><pre><code> units
</code></pre>
Find a file by name faster than Spotlight:<p><pre><code> locate "pear" # finds ~/pear/readme.txt, ~/pearidea.txt
</code></pre>
To move and copy individual files around, activate the GUI:<p><pre><code> open .
</code></pre>
These are just a few examples of CLI tools being superior.