- JDKがinstall済みであること
- java コマンドに環境変数Pathが通っていること
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ex: copy_jenkins_jobs.sh /tmp/jenkinsjobs | |
JENKINS_URL="http://localhost:8080" | |
AUTH="<username>:<API token>" | |
CONFIG_TMP_XML="config_tmp.xml" | |
DIR=$1 |