7 lines
120 B
Bash
Executable file
7 lines
120 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
main() {
|
|
for test in $(compgen -A function | grep "^test_linux_"); do "$test"; done
|
|
}
|
|
|
|
main "$@"
|