Skip to content

Instantly share code, notes, and snippets.

@ducu
ducu / manage.sh
Last active July 19, 2017 09:01
Call a bash script with arguments as function names to be executed orderly
#!/bin/bash
## Manage component
function arg1() {
echo "Function arg1"
}
function arg2() {
echo "Function arg2"
}