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-nohup/example-nohup
|
||||||
example-pprof/example-pprof
|
example-pprof/example-pprof
|
||||||
example-shell/example-shell
|
example-shell/example-shell
|
||||||
|
example-ssh/example-ssh
|
||||||
example-systray/example-systray
|
example-systray/example-systray
|
||||||
example-ui-controlgallery/example-ui-controlgallery
|
example-ui-controlgallery/example-ui-controlgallery
|
||||||
example-ui-radiobutton/example-ui-radiobutton
|
example-ui-radiobutton/example-ui-radiobutton
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -29,12 +29,14 @@ build:
|
||||||
# misc
|
# misc
|
||||||
cd example-lookupAAAA; go install # nslookup
|
cd example-lookupAAAA; go install # nslookup
|
||||||
cd example-json-decode; go install # raw golang byte handling
|
cd example-json-decode; go install # raw golang byte handling
|
||||||
|
cd example-ssh; go install # scp example
|
||||||
|
|
||||||
# golang things
|
# golang things
|
||||||
cd example-pprof; go install # dump out go process internals
|
cd example-pprof; go install # dump out go process internals
|
||||||
|
|
||||||
prep:
|
prep:
|
||||||
make -C example-nohup prep
|
make -C example-nohup prep
|
||||||
|
make -C example-sshd prep
|
||||||
|
|
||||||
sub-make:
|
sub-make:
|
||||||
# shell things
|
# shell things
|
||||||
|
|
|
@ -5,3 +5,6 @@ build:
|
||||||
|
|
||||||
build-windows:
|
build-windows:
|
||||||
env GOOS=windows GOARCH=amd64 go build
|
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:
|
scp:
|
||||||
go run scp.go
|
go run scp.go
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build ignore
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build ignore
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "bufio"
|
import "bufio"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build ignore
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -13,7 +13,7 @@ import "golang.org/x/crypto/ssh"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
host := "mirrors.wit.com"
|
host := "mirrors.wit.org"
|
||||||
port := "22"
|
port := "22"
|
||||||
username := "jcarr"
|
username := "jcarr"
|
||||||
pass := "tryme"
|
pass := "tryme"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build ignore
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
Loading…
Reference in New Issue