앞에서 소개한 피자 만드는 과정을 함수로 만들어 봅시다.
1 다음 내용을 func_pizza.sh 파일로 작성합니다.
func_pizza.sh
#!/bin/bash
function make_a_pizza() ----- ①
{
echo " - flatten the dough"
echo " - spread the tomato source"
echo " - top with ham, cheese, meat and veges"
echo " - bake in the oven"
}
echo "for first pizza..."
make_a_pizza --------------- ②
echo "for second pizza..."
make_a_pizza
echo "for third pizza..."
make_a_pizza