#!bin/bashhome_dir=/home/tool/mkdir -p $home_dirdate=`date +%Y%m%d%H%M`output_file="${home_dir}/values_${date}.csv"#List file must in need 3 values, id, ip, hostname####### Example List file values# 1 192.168.10.1 Server1# 2 192.168.10.2 Server2# 3 192.168.10.3 Server3file="$home_dir/****.list"username=""password=""content=$(cat "$file")IFS=$'\n'for line in $content; do id=$(echo "$line" |..