This document specify the Citizen.io organization protocol for human beings. It also requests discussion and suggestions for improvements. The standard used is a direct implementation of the "Internet Official Protocol Standards". (STD 1) Distribution of this memo is unlimited.
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
#!/bin/bash | |
# from http://superuser.com/a/496572/274058 | |
function __wget() { | |
: ${DEBUG:=0} | |
local URL=$1 | |
local tag="Connection: close" | |
local mark=0 |