Created
September 21, 2015 09:05
-
-
Save pkociepka/c4ca23ac0c6133964c66 to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env escript | |
| main(Nodenames) -> | |
| lists:foreach( | |
| fun(Nodename) -> | |
| gen_server:cast({onepanel, list_to_atom(Nodename)}, | |
| {connection_request, node()}) | |
| end, | |
| Nodenames). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment