Segue abaixo função com parâmetros em Shell Script:
#!/bin/bash funcao_com_parametro() { echo $1 echo $2 } funcao_com_parametro 20 30