22 lines
345 B
Bash
Executable File
22 lines
345 B
Bash
Executable File
#!/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
|
|
|
|
|