Scilab-Branch-5.3-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
unix_s
シェル (sh)コマンドを実行, 出力なし
呼び出し手順
unix_s(cmd)
パラメータ
- cmd
- 文字列 
説明
shシェルで実行する文字列 cmdを Unixに送信します. 
	標準出力は /dev/null にリダイレクトされます.
	Unix実行エラーはトラップされます; *注意* 
	コマンドのリストを ";" で区切った場合,
	最後のシェルコマンドエラーのみが
	リポートされます.これは推奨されません.
例
if getos() == 'Windows' then unix_s("del foo"); else unix_s("rm -f foo"); end
参照
| << unix_g | Input/Output functions | unix_w >> |