Automate Tasks Using Shell Scripts
Shell Script என்பது Linux Commands-ஐ ஒரு File-ல் எழுதிப் Automation செய்ய பயன்படும் Program ஆகும்.
#!/bin/bash echo "Welcome to VelviHub"
name="Raj" echo $name
read username echo $username
if [ $a -gt 10 ] then echo "Greater" fi
for i in 1 2 3 4 5 do echo $i done
count=1 while [ $count -le 5 ] do echo $count count=$((count+1)) done
if [ -f file.txt ] then echo "File Exists" fi
ping -c 4 8.8.8.8
tar -cvf backup.tar /home
✔ Server Automation
✔ Daily Backups
✔ Network Monitoring
✔ Telecom Operations
✔ Cloud Administration
✔ DevOps Automation
What is Shell Scripting?
What is Bash?
How to create variables?
What is a Loop?
Difference between For and While?
How to automate tasks?
What is Shebang (#!/bin/bash)?
How to run a Shell Script?
Shell Scripting என்பது Linux Administration மற்றும் DevOps-ல் மிகவும் முக்கியமான Automation Skill ஆகும்.