Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 2
exit | UNIX | 株式会社CONFRAGE
Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 17

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 17
exit
exitコマンドはシェルで使用され、シェル起動元に終了ステータスを返すコマンドです。
通常、正常終了時は0にし、異常終了の場合は1以上とします。

以下は、日付の計算をおこない、標準出力するシェルでtest.kshというスクリプトとします。
このシェルを起動し、終了ステータスとして10を返し、起動元で終了ステータスを確認します。

シェルスクリプト
#!/usr/bin/bash

i=0  #インクリメント演算子
j=-9 #TZのデフォルトは「TZ=JST-9」
k=7  #ループ回数

while [ $i != $k ];do
    arr[$i]=`exit TZ=JST+$j date +%Y%m%d`
    i=$((i=i+1)) #インクリメント
    j=$((j+24))  #24時間足す
done

exit 10 #最後にexitコマンドで終了ステータス10を返している
プロンプト
$./test.ksh
$echo #?
10
$
シェル実行後の#?という特殊変数に終了ステータスが格納されているのがわかります。

Back to top

Information

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 100

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 100

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 109

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/unix/unix_command/exit/exit.html on line 109