# Add to ~/.bashrc alias ll='ls -la' alias ..='cd ..' alias update='sudo apt update && sudo apt upgrade'
Useful Functions
For more complex operations, use functions:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Create and enter directory in one step mkcd() { mkdir -p "$1" && cd"$1" }
# Extract various archive formats extract() { if [ -f "$1" ]; then case"$1"in *.tar.bz2) tar xjf "$1" ;; *.tar.gz) tar xzf "$1" ;; *.zip) unzip "$1" ;; *) echo"Unknown format" ;; esac else echo"'$1' is not a valid file" fi }
Remember to run source ~/.bashrc after making changes to apply them to your current session.
## Text Processing Tools
Master these powerful text manipulation utilities to process data efficiently.
# Make API request and format JSON curl https://api.example.com/data | jq
SSH Advanced Techniques
1 2 3 4 5 6 7 8 9 10 11
# Run a command on remote server ssh user@server "df -h"
# Local port forwarding (access remote service locally) ssh -L 8080:localhost:80 user@server
# Configure SSH with ~/.ssh/config Host myserver HostName server.example.com User username Port 2222
Network Diagnostics
1 2 3 4 5 6 7 8
# Trace network route traceroute example.com
# DNS lookup dig example.com
# Check open ports netstat -tuln
## Shell Productivity Boosters
These shortcuts and techniques will make you much more efficient.
Command History Navigation
1 2 3 4 5
history# Show command history !42 # Run command #42 from history !! # Repeat last command !string # Run most recent command starting with "string" ^old^new # Replace "old" with "new" in previous command
Essential Keyboard Shortcuts
1 2 3 4 5 6
Ctrl+a # Move to beginning of line Ctrl+e # Move to end of line Ctrl+u # Delete from cursor to start of line Ctrl+k # Delete from cursor to end of line Ctrl+r # Reverse search history Alt+. # Insert last argument of previous command
mkdir -p "$DEST" echo"Backing up $SOURCE to $DEST/$ARCHIVE..." tar -czf "$DEST/$ARCHIVE" -C "$(dirname "$SOURCE")""$(basename "$SOURCE")" echo"Done! Archive size: $(du -h "$DEST/$ARCHIVE" | cut -f1)"
These simple scripts demonstrate how powerful the shell can be for automating routine tasks. Adapt them to your specific needs and build your toolkit over time.
## Conclusion
Throughout this course, we’ve journeyed from basic shell commands to advanced techniques and tools. You now have the knowledge to navigate the filesystem, manipulate files, process text, automate tasks with scripts, and enhance your productivity with various shell features.
The shell is more than just a command prompt—it’s a powerful environment for solving problems and extending your capabilities as a developer or system administrator.
Final tips for shell mastery:
Learn incrementally: Focus on understanding concepts rather than memorizing commands
Practice regularly: Use the shell for your daily tasks
Read others’ scripts: Learn from experienced users
Customize thoughtfully: Build your configuration files over time
Embrace the philosophy: Simple tools combined in powerful ways
The shell may seem arcane at times, with its terse commands and cryptic options, but it’s a tool that rewards investment. The time you spend learning the shell will be repaid many times over in increased productivity throughout your computing career.