linux Command - capabdou/guide-devops GitHub Wiki
5 Linux Command Tricks That Will Change Your Life as a Programmer
mkdir -p {dev,test,prod}/{backend,frontend} touch test{1..100}.txt Let’s say you’re monitoring a web server’s log file to see incoming requests and errors: tail -f /var/log/nginx/access.log
For instance, you might run: tail -f /var/log/app/error.log tail -f error_file.log | grep "ERROR"
history 5
!125
mkdir with braces to create multiple folders in one go. cd - to quickly jump back to your previous directory. touch with a range to create multiple files at once. tail -f to follow log files in real-time. history 5 to recall and re-execute recent commands.
doc redhat
DevOps — Advanced Linux Commands
https://medium.com/geekculture/devops-advanced-linux-commands-197c0609508b
Top 79 Linux commands that are commonly used in DevOps:
6 Essential Linux Command Line Tools for DevOps Engineers
https://medium.com/itnext/6-essential-linux-command-line-tools-for-devops-engineers-5cd23b578c50
100 Days of DevOps — Day 62-Useful Linux Command for Network Troubleshooting
50 Essential Linux Commands for DevOps: Explained with Examples.