CLEAN: rename files
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
d0990d55f1
commit
1faadf4845
|
@ -18,6 +18,7 @@ example-lookupAAAA/example-lookupAAAA
|
|||
example-nohup/example-nohup
|
||||
example-pprof/example-pprof
|
||||
example-shell/example-shell
|
||||
example-ssh/example-ssh
|
||||
example-systray/example-systray
|
||||
example-ui-controlgallery/example-ui-controlgallery
|
||||
example-ui-radiobutton/example-ui-radiobutton
|
||||
|
|
2
Makefile
2
Makefile
|
@ -29,12 +29,14 @@ build:
|
|||
# misc
|
||||
cd example-lookupAAAA; go install # nslookup
|
||||
cd example-json-decode; go install # raw golang byte handling
|
||||
cd example-ssh; go install # scp example
|
||||
|
||||
# golang things
|
||||
cd example-pprof; go install # dump out go process internals
|
||||
|
||||
prep:
|
||||
make -C example-nohup prep
|
||||
make -C example-sshd prep
|
||||
|
||||
sub-make:
|
||||
# shell things
|
||||
|
|
|
@ -5,3 +5,6 @@ build:
|
|||
|
||||
build-windows:
|
||||
env GOOS=windows GOARCH=amd64 go build
|
||||
|
||||
prep:
|
||||
go get -v -t -u .
|
|
@ -0,0 +1,5 @@
|
|||
all:
|
||||
go install
|
||||
|
||||
prep:
|
||||
go get -v -t -u .
|
|
@ -1,3 +1,6 @@
|
|||
all:
|
||||
go build
|
||||
|
||||
scp:
|
||||
go run scp.go
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// +build ignore
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// +build ignore
|
||||
|
||||
package main
|
||||
|
||||
import "bufio"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// +build ignore
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
|
|
|
@ -13,7 +13,7 @@ import "golang.org/x/crypto/ssh"
|
|||
|
||||
func main() {
|
||||
|
||||
host := "mirrors.wit.com"
|
||||
host := "mirrors.wit.org"
|
||||
port := "22"
|
||||
username := "jcarr"
|
||||
pass := "tryme"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// +build ignore
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
|
|
Loading…
Reference in New Issue