Complete the code to identify the main Jenkins home directory environment variable.
echo $[1]The main environment variable that points to the Jenkins home directory is JENKINS_HOME.
Complete the command to list the contents of the Jenkins home directory.
ls -l $[1]To see the files and folders inside the Jenkins home directory, use ls -l $JENKINS_HOME.
Fix the error in the command to find the Jenkins configuration file inside the home directory.
cat $[1]/config.xmlThe Jenkins main configuration file config.xml is located inside the directory pointed by JENKINS_HOME.
Fill both blanks to create a command that lists all plugin files in the Jenkins plugins directory.
ls -l $[1]/$[2]
The Jenkins plugins are stored inside the plugins folder within the JENKINS_HOME directory.
Fill all three blanks to create a command that finds all job configuration files inside Jenkins home.
find $[1]/$[2] -name [3]
Jenkins job configurations are stored inside the jobs folder within JENKINS_HOME, and each job has a config.xml file.