Tip Category 13 tips command-line

Command Line

13 Total Tips
5 Beginner
7 Intermediate
1 Advanced
How to Use Linux cat Command for File Viewing and Analysis? Quick Answer: Use cat filename.txt to display file contents, cat -n filename.txt to show...
Bash
cat -n /var/log/nginx/error.log | grep -E "(404|500|503|502)"
luc 25 min read
Read Tip
How to Use Linux cp Command for Safe File Copying? Quick Answer: Use cp -i source destination for interactive copying with overwrite protection, or cp...
Bash
cp -riv my-site/ my-site-backup/
luc 26 min read
Read Tip