Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 402 Bytes

File metadata and controls

13 lines (12 loc) · 402 Bytes

🧩 Shell Tools

alias ll='ls -la'        # Create shortcut
unalias ll               # Remove alias
sleep 5                  # Wait 5 seconds
time command             # Time a command
bc                       # Calculator
expr 4 + 5               # Simple math
seq 1 5                  # Count numbers
yes hello                # Repeat forever
watch -n 1 date          # Repeat command