Skip to content
Snippets Groups Projects
Select Git revision
  • ff1a6cdb7d5d3d325b3bface5a7fd94e9abdbfd6
  • master default protected
2 results

README.md

Blame
  • stop mods server 530 B
    #!/bin/bash
    #
    # stop mods server
    #
    # Neil Gershenfeld 
    # (c) Massachusetts Institute of Technology 2016
    #
    # This work may be reproduced, modified, distributed, performed, and 
    # displayed for any purpose, but must acknowledge the fab modules 
    # project. Copyright is retained and must be preserved. The work is 
    # provided as is; no warranty is provided, and users accept all 
    # liability.
    #
    pkill -f "node printserver.js"
    pkill -f "node serialserver.js"
    pkill -f "http-server -p 8080"
    zenity --info --text 'mods server stopped'