① 함수 이름이 ‘make_a_pizza’인 함수를 선언합니다. 이 함수는 피자 만드는 과정을 화면에 출력합니다.
② 함수 이름으로 함수를 호출합니다.
2 스크립트 파일을 저장하고 실행하면 다음과 같은 결과를 확인할 수 있습니다.
터미널 |
gilbut@ubuntu2404:~/script$ chmod +x func_pizza.sh gilbut@ubuntu2404:~/script$ ./func_pizza.sh for first pizza... - flatten the dough - spread the tomato source - top with ham, cheese, meat and veges - bake in the oven for second pizza... - flatten the dough - spread the tomato source - top with ham, cheese, meat and veges - bake in the oven for third pizza... - flatten the dough - spread the tomato source - top with ham, cheese, meat and veges - bake in the oven |