Shell script

ewillwin·2022년 5월 31일
0

System Programming Lab

목록 보기
3/15

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) 입력하여 실행시켜야함

profile
💼 Software Engineer @ LG Electronics | 🎓 SungKyunKwan Univ. CSE

0개의 댓글