「ShellScript」終了ステータスの値を取得する方法
書式
$?
成功:0
失敗:1
使用例
実行結果1
# sh te ...
「ShellScript」while文のサンプル
書式
while
do 処理コード done
使用例
実行結果
$ sh test06.sh ...
「Shell」ftp自動的ファイルをダウンロードする
ファイルftpdl.sh
サンプルコード
cd/home/oracle/ftpdatashort_ymd=$(date +%y%m%d)file="10628110.20""$short_ymd"".zip"ftp ...「ShellScript入門」関数(function)のサンプル
書式
関数名() {
//処理コード
}
使用例
「ShellScript」until文で条件を判定するサンプル
書式
until
do 処理コード done
使用例
実行結果
$ sh test07.sh ...
「shell入門」while文の使い方
1.基本形
while 条件文
do
命令1
命令2
命令3
done
2.サンプル
#!/bin/bash
i=1 ...
「ShellScript」case文で入力内容を分岐するサンプル
書式
case “${変数名}” in
使用例
「shell入門」for文の使い方
1.基本形
for 変数 in アイテム1 アイテム2 … アイテムN
do
命令1
命令2
命令3
done
2.サンプル1
#!/bin/bash ...
「shell入門」文字列を比較するサンプル
shellコード
#!/bin/bash
a=”123″
b=”1234″
c=”123″
if
then ...
「shell入門」制御構文if文のサンプル
1.基本形
if 条件文1
then
命令1
elif 条件文2
命令2
elif 条件文3
命令3
else
命令4
fi
2.サンプル ...