OpenVMS DCLコマンドは次のようHELP ON EXAMPLE
に表示します。
オン
例
1.$ ON SEVERE_ERROR THEN CONTINUE A command procedure that contains this statement continues to execute normally when a warning or error occurs during execution. When a severe error occurs, the ON statement signals the procedure to execute the next statement anyway. Once the statement has been executed as a result of the severe error condition, the default action (ON ERROR THEN EXIT) is reinstated.
ヘルプによると、どちら[-]x.for
も[-]y.for
存在しない場合、最後の 2 行は実行されません。
$ on error then $ continue
$ rename [-]x.for []
$ rename [-]y.for []
$ type *.for
スクリプトの各行の間にステートメントをON ERROR
配置せずに、最初の行のように処理を設定する方法はありますか?ON ERROR