santanudas
Technical User
Hi all,
I use this script:
to remotely login on to all of my nodes, say e.g. from “node011” to “node018”. The script runs fine, I can login and do stuff on the node as well. But upon exit, I get this warning message: TERM environment variable not set.
No real hard done but just a bit annoying. Any idea how to get rid of this message? Thanks in advance.
I use this script:
Code:
HOST=`seq 11 18 | gawk '{printf("node%03i\n",$1);}'`
for ix in ${HOST}; do
ssh -T ${ix} << EOF
some commnds
.......
......
exit;
EOF
No real hard done but just a bit annoying. Any idea how to get rid of this message? Thanks in advance.