Rename all Files in the Directory

Here is the simple shell script to rename all files in the folder with increasing number. In below example I am going to rename all jpg image with increasing number. #!/bin/bash a=1 for i in *.jpg; do new=$(printf “%04d.jpg” “$a”) mv — “$i” “$new” let a=a+1 done Output: 0001.jpg 0002.jpg 0003.jpg 0004.jpg 0005.jpg 0006.jpg 0007.jpg…

Read More

What is Error Budget?

An error budget is the agreed-upon amount of unreliability downtime, or failure a system can experience within a specific period before users are noticeably impacted or targets are broken.  It is a core concept in Site Reliability Engineering (SRE) used to balance the speed of shipping new features with system stability. 📊 How It Works…

Read More
Verified by MonsterInsights