Boost Your Productivity
The terminal is one of the most powerful tools in Linux. Master these techniques to work faster and smarter.
Essential Shortcuts
Ctrl+R- Search command historyCtrl+A/Ctrl+E- Jump to beginning/end of lineAlt+.- Insert last argument from previous command
Power Commands
find . -type f -name "*.log" | xargs grep "error"
awk '{print $1}' file.txt | sort | uniq -c
sed -i 's/old/new/g' *.txt