쉘스크립트에서 함수를 사용하는 방법.

* 함수정의

necho()
{
    echo "ha    * $1"


* 사용

necho "hello"


* 출력

ha    * hello


+ Recent posts