Skip to content
darren ha edited this page Sep 6, 2017 · 1 revision

Bash

function

function clear_proxy {
    unset http_proxy
    unset https_proxy
}
function func {
    echo $1
}
func hello

Clone this wiki locally