シェルスクリプトにメソッドを利用するサンプル

処理コード:

root@ubuntu:/home/study# vi test3
#!/bin/bash

add(){
a=$1;
b=$2;
z=`expr $a + $b`;
echo “The sum is $z";
}
add $1 $2

root@ubuntu:/home/study# chmod +x test3
root@ubuntu:/home/study# ./test3 1 2

Linux

Posted by arkgame