Shell Scripting With Example
Write the Shell Scripting file on CMD Line to install Jenkins.
vim jenkins_installation.sh
#!/bin/sh
curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \
/usr/share/keyrings/jenkins-keyring.asc > /dev/null
echo deb [sign...
goutamdevops.hashnode.dev1 min read