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
var webserver = require('webserver'); | |
var system = require('system'); | |
function urlToAddress(url_string) { | |
var rx = /address=(.+?)(&|$)/gm; | |
var arr = rx.exec(url_string); | |
return arr[1] | |
} | |
var server = webserver.create(); |
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
#[1]+ Stopped myprogram | |
$ disown -h %1 | |
$ bg 1 | |
#[1]+ myprogram & | |
$ logout |