Author Archives: Roopendra - Page 3
Jenkins Questions and Answers
Jenkins Questions and Answers Here are the list of Jenkins Questions. What is the Jenkins ? How you will use Jenkins to automate CI/CD ?How to configure your Github or…
Types of Jobs in Jenkins
Types of Jobs in Jenkins We can create below types of jobs in Jenkins. Freestyle Project PipelineMulticonfiguration ProjectsFolder GitHub organization Mutlibranch Pipeline
How to install Jenkins on Windows 10?
What is Jenkins? Jenkins is one of the most popular Continuous Integration (CI) and Continuous Delivery (CD) tool. Jenkins is Open Source written in Java. Jenkins can be used in…
Popular Use Cases of Jenkins
Jenkins is one of the most popular Continuous Integration (CI) and Continuous Delivery (CD) tool. Jenkins is an Open Source build written in Java. Jenkins can be used in automation…
Why we need Jenkins?
Jenkins is one of the most popular Continuous Integration (CI) and Continuous Delivery (CD) tool. Jenkins is an Open Source build written in Java. Jenkins can be used in automation…
Check if array contains value in shell script
Check if array contains value in shell script Here is simple bash script to check if array contains value . We can iterate over array and check if value is…
How to get process ID of background process?
I usually prefer to execute process in background so that we don't need to worry if terminal got killed due to timeout or accidently. However, what if you want to…
How to turn on/off ambient mode during charging in MIUI 12/Redmi Phones
Here is step by step guide to turn on/off ambient mode from Charging screen. I personally don't like it so I have figured out the way to turn off Ambient…
Loop through business day and previous business day in shell
Shell script loop to execute some task for business day and previous business day. If previous business day is weekend then script should skip the weekend date and pick Friday…
How to check certificate validity in Linux?
This article help you to check certificate expiry date from Linux command line using openssl utility. Check SSL certificate expiration date Syntax: openssl x509 -enddate -noout -in <certificate name> openssl…