[add tools]
This commit is contained in:
parent
02f26d145f
commit
4aed871a59
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
#
|
||||||
|
# Do simulation test
|
||||||
|
#
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
set -e
|
||||||
|
#set -x
|
||||||
|
|
||||||
|
while read line
|
||||||
|
do
|
||||||
|
firstChar=`echo ${line:0:1}`
|
||||||
|
if [[ -n "$line" ]] && [[ $firstChar != "#" ]]; then
|
||||||
|
echo "======== $line ========"
|
||||||
|
$line
|
||||||
|
fi
|
||||||
|
done < ./jenkins/basic.txt
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue