shell script를 실행하면 script에 적혀있는 terminal의 명령어들을 순차적으로 실행시킬 수 있음
script를 executable file로 만들려면, $ chmod + [filename]
make
plus=$(($1+$2))
minus=$(($1-$2))
echo "$plus $minus" > answer.txt
echo "$1 $2" | test > output.txt
diff answer.txt output.txt > result.txt
make clean
위의 shell script를 "./test.sh 11 22"로 parameter 값을 두 개 (11, 22) 입력하여 실행시켜야함