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/set/set.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/set/set.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/set/set.html on line 2
set | 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/set/set.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/set/set.html on line 17
set
setコマンドは、シェルスクリプト内で使用すると、位置パラメータをセットしなおします。
以下のような内容のシェルがあるとします。

#!/usr/bin/bash
set test1 test2
echo $1
echo $2
echo $3
このシェルを以下のように引数を与えて実行します。

a.ksh a b c
シェル実行時には位置パラメータはa,b,cがセットされていますが、シェル内のsetコマンドで一パラメータをセットされなおされているため実行結果は以下のようになります。

test1
test2
$#は動的に変更される
以下のソースを見てください。

#!/usr/bin/bash

echo $1
echo $2
echo $3
echo $4
echo "sum:"$#

set a b c
echo $1
echo $2
echo $3
echo $4
echo "sum:"$#
これはsetコマンドを使用してスクリプト内で引数を変更しています。
この時、引数の数を格納する$#の内容も変更されます。
また、上記スクリプトは題4引数がセットされていませんが、この場合、題4引数には何もセットされませんので注意してください。

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/set/set.html on line 102

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/set/set.html on line 102

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/set/set.html on line 111

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/set/set.html on line 111