Linux Cli Tips
5 Linux Command Tricks That Will Change Your Life as a Programmer
**mkdir**
with braces to create multiple folders in one go.mkdir -p {dev,test,prod}/{backend,frontend}
**cd -**
to quickly jump back to your previous directory.**touch**
with a range to create multiple files at once.touch test{1..100}.txt
**tail -f**
to follow log files in real-time.**history 5**
to recall and re-execute recent commands.