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/bash/if/if.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/bash/if/if.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/bash/if/if.html on line 2
bashのif文 | 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/bash/if/if.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/bash/if/if.html on line 17
bashのif文
シェルではif文が使用できます。
以下に例文を示します。

#エラー
if ((0==0)) then
  echo "true"
fi

#条件式とthenの間にセミコロン入力すればOK
if ((0==0));then
  echo "true"
fi

#()の後に改行すればOK
if ((0==0))
then
  echo "true"
fi

#エラー
if [ -e kl.ksh ] then
  echo "true"
else
  echo false
fi

#[]の前後スペースを入力すればOK
if [ -e kl.ksh ]
then
  echo "true"
else
  echo false
fi

#条件式とthenの間にセミコロン入力すればOK
if [ -e kl.ksh ];then
  echo "true"
else
  echo false
fi

#[]の後に改行すればOK
if [ -e kl.ksh ]
then
  echo "true"
else
  echo false
fi
比較演算子
-eq等しい
-ne等しくない
-lt小なり(<)
-le小なりイコール(≦)
-gt大なり(>)
-ge大なりイコール(≧)


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/bash/if/if.html on line 124

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/bash/if/if.html on line 124

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/bash/if/if.html on line 133

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/bash/if/if.html on line 133