Linux Shell Scripting & Automation
Challenge 1:
Write a simple Bash script that prints “Hello DevOps” along with the current date and time.
#!/bin/bash
echo "Hello DevOps"
echo "Current date and time: $(date)"
Challenge 2:
Create a script that checks if a website (e.g., https://www....
build-deploy-pratik.hashnode.dev3 min read