This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Manage component | |
function arg1() { | |
echo "Function arg1" | |
} | |
function arg2() { | |
echo "Function arg2" | |
} |
OlderNewer