Search

Function

print_hello_world() { echo "Hello, world!" } print_hello_world
Shell
복사
add() { echo $(($1 + $2)) } add 1 2 add 2 3
Shell
복사