vxWorks FTP タイムアウト時間config.hftpのタイムアウト時間を設定(追加)--->#undef FTP_TIMEOUT#define FTP_TIMEOUT (30) /* 30sec */<---デフォルトは00だとFTP_REPLYTIMEOUTDEFAULT (10 秒 ) 。ネットワークスタックプログラマーズガイド FTPクライアントの章
シェル csh if文 結果#!/bin/tcsh -vLBL_START:echo "start `date`"DoMycommandoset result=$?if ( $result != 0 ) then echo "resutl = $result" goto LBL_EXITendifecho "Done `date`"#sleep 5goto LBL_STARTLBL_EXIT:echo "Done `date`"