<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<font face="Times New Roman">Dear Prof. Blaha,<br>
<br>
Attached, please find a patch containing another improvement to
siteconfig_lapw for Wien2k 12.1.<br>
<br>
For example, enter "rsh" for the remote shell, then run the script
again and press enter with blank input to set it to the default
"ssh". The files such as vec2old_lapw will still be set to "rsh".
<br>
<br>
The attached patch fixes this by changing:<br>
<br>
echo -n " Remote shell (default is $remote) = "<br>
set input = ($<)<br>
if !("$input" == "") then <br>
cd $bin<br>
echo " Changing lapw1para"<br>
sed -e "s/set remote .*"'$'"/set remote = $input/"
<lapw1para_lapw >tmp<br>
...<br>
wait<br>
endif<br>
<br>
to<br>
</font><br>
<font face="Times New Roman"><font face="Times New Roman">echo -n
" Remote shell (default is $remote) = "<br>
set input = ($<)<br>
if ("$input" == "") then<br>
set input=$remote<br>
endif </font></font><font face="Times New Roman"><font
face="Times New Roman"><br>
cd $bin<br>
echo " Changing lapw1para"<br>
sed -e "s/set remote .*"'$'"/set remote = $input/"
<lapw1para_lapw >tmp<br>
...<br>
wait<br>
<br>
</font>Best Regards,<br>
<br>
Gavin<br>
</font>
</body>
</html>