Skip to content
Snippets Groups Projects
Select Git revision
  • f64a3154daca5a424babcd16bec852235b4d309c
  • master default protected
  • jake
3 results

ring.gpiolib.c

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'