kkDav1337

How to call any function in Bash

Oct 6th, 2021 (edited)
2,693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.11 KB | None | 0 0
  1. #!/bin/bash
  2. test(){
  3. echo "Call test function"
  4. }
  5. echo "After this we will call the function test()"
  6. test #
Add Comment
Please, Sign In to add comment