Code:
#!/bin/bash
#Functions
CallFunct() {
functio()
}
functio() {
echo -n
echo -n
}
#End
# MAIN
CallFunct()
exit 0
When I try to run the current code, it stops on the bracket after functio() in CallFunct(). The only way I could get this to run was by removing CallFunct and just calling functio.
Could someone point me in the right direction?