shellscript

書式
$?
成功:0
失敗:1
使用例

#!/bin/bashread xread y(( $x == $y ));echo "終了ステータスの値: "$?

実行結果1
# sh te ...

shellscript

書式
while
do 処理コード done
使用例

#!/bin/shx=11while do echo $x x=`expr $x + 1`done

実行結果
$ sh test06.sh ...

shellscript

ファイルftpdl.sh

サンプルコード

cd/home/oracle/ftpdatashort_ymd=$(date +%y%m%d)file="10628110.20""$short_ymd"".zip"ftp ...

shellscript

書式
関数名() {
//処理コード
}
使用例

#!/bin/sh#関数を指定testFuncA () { echo "関数A 1111"}testFuncB() { echo "関数B 引数1 ...

shellscript

書式
until
do 処理コード done
使用例

#!/bin/shx=21until do echo $x x=`expr $x + 2`done

実行結果
$ sh test07.sh ...

shellscript

1.基本形
while 条件文
do
命令1
命令2
命令3
done

 

2.サンプル
#!/bin/bash

i=1 ...

shellscript

書式
case “${変数名}” in
使用例

#!/bin/bashread -p "よろしいですか(y/n) " CFTcase "$CFT" in ) echo "大丈夫です";; ...

shellscript

1.基本形
for 変数 in アイテム1 アイテム2 … アイテムN
do
命令1
命令2
命令3
done

2.サンプル1
#!/bin/bash ...

shellscript

shellコード
#!/bin/bash

a=”123″
b=”1234″
c=”123″

if
then ...

shellscript

1.基本形
if 条件文1
then
命令1
elif 条件文2
命令2
elif 条件文3
命令3
else
命令4
fi

2.サンプル ...