test.sh 117 B

12345678910111213141516
  1. #!/bin/bash
  2. echo "this is test"
  3. func1()
  4. {
  5. echo "this is func1"
  6. }
  7. func2()
  8. {
  9. echo "this is func2"
  10. }
  11. echo "$#"